- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
大家晚上好
我正在使用来自 https://github.com/abraham/twitteroauth 的 PHP 代码
登录工作正常,但在尝试向 Twitter 发布状态时出现以下错误:
stdClass Object ( [errors] => Array ( [0] => stdClass Object ( [code] => 220 [message] => Your credentials do not allow access to this resource. ) ) )
我正在使用以下代码:
session_start();
require_once('twitteroauth/twitteroauth.php');
require_once('config.php');
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $_SESSION['oauth_token'],
$_SESSION['oauth_token_secret']);
$token_credentials = $connection->getAccessToken($_REQUEST['oauth_verifier']);
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $token_credentials['oauth_token'],
$token_credentials['oauth_token_secret']);
$account = $connection->get('account/verify_credentials');
$status = $connection->post('statuses/update', array('status' => 'Text of status here'));
我已按照与网站相同的说明进行操作。我哪里错了?
最佳答案
在你的情况下,你必须在 twitter 上创建一个 api 吗? https://apps.twitter.com/如果这样做,请检查您的 api 的配置。此链接可能会有所帮助。 https://dev.twitter.com/docs/auth/oauth/faq
关于php - 推特 API 错误 220 - : twitteroauth,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19865663/
我正在使用 twitter OAuth(由 Abraham 提供),有一个函数我想使用 PHP 在页面中重复多次。我设置了一个数据库,其中包含用户的身份验证 key 和 secret 设置的列表,其中
我正在使用来自 https://github.com/abraham/twitteroauth 的 twitteroauth像这样: $Twitter = new TwitterOAuth(...)
嗨,抱歉我的英语不好,我写了一个简单的应用程序来更新 Twitter 帐户中的状态。推特登录: require("twitteroauth.php"); session_start()
我已经把文件放在我的服务器上。我已经用 Twitter 建立了一个应用程序。我已将使用者 key 和使用者 secret 连同回调的正确 URL 一起放入 config.php。但是,当我转到 twi
abraham 的 twitteroauth 库是否适用于 update_with_media? 我正在使用下面的代码,但它返回了我的 stdClass 对象( [请求] =>/1/statuses/
我正在尝试使用 Abraham 的 twitteroauth 库 (TwitterOAuth v0.2.0-beta2) 实现来自 ajax 的 upload_with_media 请求。我对基本帖子
大家晚上好 我正在使用来自 https://github.com/abraham/twitteroauth 的 PHP 代码 登录工作正常,但在尝试向 Twitter 发布状态时出现以下错误: std
在调用 Twitter 之前,我检查数据的 chache 版本。如果没有缓存,那么我会创建与 twitter 的连接。 $connection = new TwitterOAuth(CONSUMER_
首先,我必须说我已经阅读了很多关于这个问题的帖子,但我仍然无法解决它。 我正在使用 Abraham 的 TwitterOAuth 库发送大量转发,代码如下: $connection = new Twi
我正在 Wordpress 中开发一个应用程序,它允许用户使用他们的 Twitter 帐户登录,然后将用户重定向到一个表单。在提交该表单时,一条推文将发送到用户的 Twitter 句柄。我正在使用 A
我使用以下代码检索我的推文并回显 json。这很好用。 get("https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name
我是一名优秀的程序员,十分优秀!