I am having problems with the first step of setting up my application, whether it is
BBAuth or OAuth. I have used both .NET and PHP codes but they both return the
same error message:
Sorry! This service is currently unavailable.Invalid (missing) src or appid
I wonder what is wrong. Under BBAuth, I have the following:
AppID: tFbDxxxxxxxxxxxxxxxxxxxxxxxxxxxxuSE6
ID: Et6Uxxxxxxxxxxxxxxxxxxxxxxxxxxx0k_g-
Shared Secret: cb66cxxxxxxxxxxxxxxxxxxxxxxxee30
and under OAuth I have
Application ID: exxxxx5c
API Key: (too long to list)
Shared Secret: c57fxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxad41
I used the provided BBAuth PHP test code and tried using both the AppID and ID for the
APPID portion and it gives me that error
CODE
// Edit these. Change the values to your Application ID and Secret
define("APPID", tFbDxxxxxxxxxxxxxxxxxxxxxxxxxxxxuSE6);
define("SECRET", cb66cxxxxxxxxxxxxxxxxxxxxxxxee30);
Similarly, for the .NET code, I used the following:
CODE
Dim auth As Yahoo.Authentication
'Create an instance of Yahoo.Authentication
auth = New Yahoo.Authentication("tFbDxxxxxxxxxxxxxxxxxxxxxxxxxxxxuSE6", "cb66cxxxxxxxxxxxxxxxxxxxxxxxee30")
'Redirect user to the signin page
Response.Redirect(auth.GetUserLogOnAddress().ToString())
But both does not seem to work. I have tried a new API key but the results are still the same.
Can anyone help on this?