我正试图通过雅虎导入联系人。但我收到错误“表social.contacts需要https但通过http 请求”。
当我在YahooOAuthApplication类中执行以下函数的var转储时出现此错误:
public function getContacts($guid = null, $offset = 0, $limit = 10)
{
if($guid == null && !is_null($this->token))
{
$guid = $this->token->yahoo_guid;
}
$rsp = $this->yql(sprintf('SELECT * FROM social.contacts(%s,%s) WHERE guid="%s"', $offset, $limit, $guid));
var_dump($rsp); exit();
return isset($rsp->query->results) ? $rsp->query->results : false;
}
我已将代码中所有位置的网址从“http://social.yahooapis.com/v1”更改为“https://social.yahooapis.com/v1”。
由于