我正在从我的网站使用雅虎登录。
我使用了从https://github.com/yahoo/yos-social-php给出的代码
示例代码片段:
$hasSession = YahooSession::hasSession(OAUTH_CONSUMER_KEY, OAUTH_CONSUMER_SECRET, OAUTH_APP_ID);
if($hasSession == FALSE) {
// create the callback url,
$callback = YahooUtil::current_url()."?in_popup";
$sessionStore = new NativeSessionStore();
$auth_url = YahooSession::createAuthorizationUrl(OAUTH_CONSUMER_KEY, OAUTH_CONSUMER_SECRET, $callback, $sessionStore);
}
这里 $auth_url 给出空值。它返回空值。我还给出了正确的消费者密钥、密钥和应用程序 ID。