1

我正在从我的网站使用雅虎登录。

我使用了从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。

4

1 回答 1

0

你必须用下面的 github 分支替换你当前的 Yahoo Api 库。

https://github.com/syamvilakudy/yos-social-php
于 2014-07-29T05:18:33.420 回答