我无法取消关注帐户。代码返回我想要取消关注的用户的帐户详细信息。 应用程序由帐户A创建,具有读/写/访问直接消息。 我已使用帐户B登录,经过身份验证并返回。使用下面的代码,我想取消关注。
data = numpy.float16(2.3).tostring()
这会打印$key=$twitter_id_whom_i_want_to_unfollow;
$settings = array(
'oauth_access_token' => YOUR_ACCESS_TOKEN,
'oauth_access_token_secret' => YOUR_ACCESS_TOKEN_SECRET,
'consumer_key' => YOUR_CONSUMER_KEY,
'consumer_secret' => YOUR_CONSUMER_SECRET
);
$requestMethod = 'POST';
$postfields = array(
'user_id' => $key
);
$url = 'https://api.twitter.com/1.1/friendships/destroy.json'; /*Remove that user from friends*/
$twitter = new TwitterAPIExchange($settings);
$profile=$twitter->buildOauth($url, $requestMethod)
->setPostfields($postfields)
->performRequest();
$profile=json_decode($profile);
echo '<pre>';print_r($profile);
帐户详细信息。无法理解如何处理它。我正在开发像crowdfire
如果我使用相同的脚本取消关注$twitter_id_whom_i_want_to_unfollow
帐户,则可以使用,但不能从其他任何帐户使用。
答案 0 :(得分:0)
好找到解决方案。上面的脚本完全正常工作,问题在于访问令牌,这些令牌没有被保存。现在很好。