Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to find my Yahoo Application id?

I'm trying to add a yahoo login to a php website using Yahoo! Social SDK - PHP5 which seems the official and most updated PHP SDK

I created an app from https://developer.yahoo.com/apps/create/ and followed the instructions provided in examples.

So at this early point I have to define Client ID, Client Secret, Application ID and the Callback URL to set the YahooOAuthApplication class.

$CONSUMER_KEY = '##';
$CONSUMER_SECRET = '##';
$APPLICATION_ID = '##';
$CALLBACK_URL = '##';
$oauthapp = new YahooOAuthApplication($CONSUMER_KEY, $CONSUMER_SECRET, $APPLICATION_ID, $CALLBACK_URL);

I visited https://developer.yahoo.com/apps/ and chose the application I previously created but I couldn't find the Application ID.

I also tried the last part of the url when in application but that didn't work either.

like image 782
fat_mike Avatar asked Mar 11 '16 05:03

fat_mike


2 Answers

Go to https://developer.yahoo.com/apps/

Clic on your app

See URL, you'll get something like this :

https://developer.yahoo.com/apps/TKI2Mw7f/

The key TKI2Mw7f at the end is your appID (This is an example)

like image 131
achovovich Avatar answered Nov 14 '22 15:11

achovovich


I am afraid whether Yahoo provides Application ID for latest APIs versions, please check their documentation.

like image 25
rc.adhikari Avatar answered Nov 14 '22 14:11

rc.adhikari