Seder
Seder

Reputation: 2763

Youtube session token

Is the youtube session token unique for each user or for each login process ? I am using Zend with youtube API

  $_SESSION['sessionToken'] = Zend_Gdata_AuthSub::getAuthSubSessionToken($_GET['token']);

and how can I get the user info such as email, full name etc using this API

Upvotes: 0

Views: 1610

Answers (1)

Silviu-Marian
Silviu-Marian

Reputation: 10907

  • Session token is per login session.
  • Full name and other profile data is here if they filled it in.
  • And you don't have access to e-mails and passwords, obviously.

That's about it.

Upvotes: 1

Related Questions