SERVICE_FORBIDDEN and v3_services.ct configuration

No replies
Joined: 02/24/2011
Points: 13

Although I have successfully made a user registration with the kaltura js lib, when i try to login i had received the SERVICE_FORBIDDEN error "The access to this service is forbidden" on my client app.

I'm implementing a kaltura based app using the javascript lib. I make a default kaltura installation and created a partiner with noting special, also because i don't know enough about kaltura configurations.

I think my js code is right:

  kUserService = new KalturaUserService(kClient);
  ...
  kUserService.login(
    loginCallback,      // callback
    kConfig.partnerId,  // partnerId
    form.id.value,      // userId
    form.password.value // password
  );

So i decide to debug the PHP service code and i discover the /kaltura_path/app/api_v3/config/v3_services.ct conf file is responsible by that SERVICE_FORBIDDEN.

The login will be blocked when the ticket column is "N" for "user.login" but will be allowed with "0", "1" or "2".

name       |id |ticket |rp |nkfp |cuod |aep |rw |pg |kn |mip |tags
user.login |   |N      |1  |0    |0    |1   |   |   |   |    |

Well... What is the meaning of this values "N, 0, 1, 2"?
There is a documentation about v3_services.ct table and it's columns?