- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
abraham 的 twitteroauth 库是否适用于 update_with_media?
我正在使用下面的代码,但它返回了我的 stdClass 对象( [请求] =>/1/statuses/update_with_media.json [错误] => 创建状态时出错。)
session_start();
require_once('twitteroauth/twitteroauth.php');
require_once('config.php');
if (empty($_SESSION['access_token']) || empty($_SESSION['access_token']['oauth_token']) || empty($_SESSION['access_token']['oauth_token_secret'])) {
header('Location: ./clearsessions.php');
}
$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET,$_SESSION['access_token']['oauth_token'], $_SESSION['access_token']['oauth_token_secret']);
$image = './images/5298.png';
$content = $connection->post('statuses/update_with_media',
array(
'media[]' => '@{$image};type=image/jpeg;filename={$image}',
'status' => 'My current location'));
include('html.inc');
有人知道如何解决这个问题吗?
编辑 1: 我正在使用 https://upload.twitter.com/1/作为网址
最佳答案
是的!按照此链接 https://github.com/robhaswell/twitteroauth/commit/7f5bfd2450cb1cff71641d7ea55e118f5a42885d 中的描述更改两个文件 Oauth.php 和 twitteroauth.php并像这样使用 $connection->upload 方法。
$params = array('media[]' => '@'.$image_url, 'status' => $messafe);
$twit = $connection->upload('statuses/update_with_media',$params);
关于php - abraham 的 twitteroauth 库是否适用于 update_with_media?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11243612/
我能够使用 Python 成功发布状态更新(tweet): import urllib import oauth2 as oauth token = oauth.Token(access_token,
abraham 的 twitteroauth 库是否适用于 update_with_media? 我正在使用下面的代码,但它返回了我的 stdClass 对象( [请求] =>/1/statuses/
我正在尝试使用 Abraham 的 twitteroauth 库 (TwitterOAuth v0.2.0-beta2) 实现来自 ajax 的 upload_with_media 请求。我对基本帖子
我正在更改我的 PHP 代码以与新的 API 兼容,但我一直在使用 update_with_media。这是我的代码: $image = constant('PATH_UPLOAD').$db_dat
所以,今天早上我收到以下错误: {"errors": [{"message": "The Twitter REST API v1 will soon stop functioning. Please
我正在使用 Twitter gem 来验证内容并将内容分享到 Twitter。我还需要包含一张图片,所以我使用“update_with_media”方法,如下所示: def tweet cli
我试过的库都不支持 update_with_media 来发布图片: twit node-twitter-api node-twitter 所有这些库都声称实现了这个功能,这非常令人担忧。 如果目前有
我没有使用 twitpic,尝试使用新的 API 但找不到 javascript 示例,它正在使用 URL 上的参数做一些奇怪的事情,因为我所有其他的 twitter API 调用都工作正常 http
请帮助我,我在使用 api v1.1 将图像上传到 Twitter 时遇到问题一个月前它工作得很好,但现在不起作用了。我正在使用亚伯拉罕 twitteroauth https://github.com
我需要将图片发布到 Twitter。我在我的应用程序中集成了 Twitter。我需要在推特上发布图片而不是 URL 链接。我不想使用 TwitPic。 我使用以下代码创建了多部分实体。它给出 404
https://api.twitter.com/1.1/statuses/update_with_media.json 在对如何在 twitter 上发布图片进行了大量研究之后,我得到了这个用于将图片
有没有人使用新的 Twitter 功能,statuses/update_with_media? 我尝试使用它上传照片,但它返回内部服务器错误。 我的要求如下: ********************
我想使用 PTT(Python Twitter 工具)在 Twitter 上发布图像。目前,我的代码很像这样: def _TweetMedia(self, t, m): try:
我是一名优秀的程序员,十分优秀!