Yahooからユーザーの連絡先を取得しようとしています。PHPSDKを使用しています。
しかし、私は空の結果を取得し続けます:
{ ["query"]=> object(stdClass)#14 (4) { ["count"]=> int(0) ["created"]=> string(20) "2012-11-06T18:05:30Z" ["lang"]=> string(5) "en-US" ["results"]=> NULL } }
私の知る限り、認証は正常に機能していますが、ここでは結果が得られません...
これは、上記の結果を得るために使用しているコードです。
$session = YahooSession::requireSession($yahooConsumerKey,$yahooConsumerSecret,$yahooAppID);
$query = sprintf("select * from social.contacts where guid=me;");
$response = $session->query($query);
var_dump($response);
/**** printing the contact emails starts ****/
if(isset($response)){
foreach($response->query->results->contact as $id){
foreach($id->fields as $subid){
if( $subid->type == 'email' )
echo $subid->value."<br />";
}
}
}
前もって感謝します!