- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试使用 SLRequest 以编程方式将图像(从 iOS 设备)上传到用户的 Twitter 帐户。推文文本已上传到推文中,但图片从未出现。响应状态码为200。
显然基础工作正常,否则推文根本不会显示在用户的流中,我已经检查过图像已找到并且 (NSData) 变量包含预期的字节数。
查看以下代码 - 正如您从注释掉的代码中看到的那样,我尝试了各种不同的修改但均未成功...感谢任何想法/帮助!
- (void) postToTwitter:(NSString *)postMessage withImageNamed:(NSString *)imageName {
// Get Twitter account
ACAccountStore *smAccount = [[ACAccountStore alloc] init];
ACAccountType *smType = [smAccount accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];
NSDictionary *postOptions = nil;
// Attempt to post the postMessage
[smAccount requestAccessToAccountsWithType:smType options:postOptions completion:^(BOOL accessGranted, NSError *error) {
// Access code block
if (accessGranted) {
NSLog(@"Access permitted");
NSArray *smAccountList = [smAccount accountsWithAccountType:smType];
if ([smAccountList count] > 0) {
// Get the first Twitter account
ACAccount *postingAccount = [smAccountList lastObject];
// Create the post request
//SLRequest *postRequest = [SLRequest requestForServiceType:SLServiceTypeTwitter requestMethod:SLRequestMethodPOST URL:[NSURL URLWithString:@"https://api.twitter.com/1.1/statuses/update.json"] parameters:[NSDictionary dictionaryWithObject:postMessage forKey:@"status"]];
//SLRequest *postRequest = [SLRequest requestForServiceType:SLServiceTypeTwitter requestMethod:SLRequestMethodPOST URL:[NSURL URLWithString:@"https://upload.twitter.com/1.1/media/upload.json"] parameters:nil];
SLRequest *postRequest = [SLRequest requestForServiceType:SLServiceTypeTwitter requestMethod:SLRequestMethodPOST URL:[NSURL URLWithString:@"https://api.twitter.com/1.1/statuses/update.json"] parameters:nil];
// Add image to post
// TODO - Check which to use >
UIImage *postImage = [UIImage imageNamed:imageName];
//UIImage *postImage = [UIImage imageWithContentsOfFile:imageName];
//NSData *imageData = UIImageJPEGRepresentation (postImage, 0.5f); // Set compression
NSData *imageData = UIImagePNGRepresentation(postImage);
//[postRequest addMultipartData:imageData withName:@"media" type:@"image/png" filename:@"image.png"];
[postRequest addMultipartData:imageData withName:@"media[]" type:@"multipart/form-data" filename:@"image.png"];
// Add text
[postRequest addMultipartData:[postMessage dataUsingEncoding:NSUTF8StringEncoding] withName:@"status" type:@"multipart/form-data" filename:nil];
// Execute the post
[postRequest setAccount:postingAccount];
[postRequest performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error) {
// Post code block
if (error) {
NSLog(@"Post failed - %@", error);
if (_delegate && [_delegate respondsToSelector:@selector(didNotPost:)])
[_delegate didNotPost:self];
} else {
NSLog(@"Post complete");
if (_delegate && [_delegate respondsToSelector:@selector(didPost:)])
[_delegate didPost:self];
}
}];
}
} else {
NSLog(@"Access denied - %@", error);
if (_delegate && [_delegate respondsToSelector:@selector(didNotPost:)])
[_delegate didNotPost:self];
}
} ];
}
这是响应:
(lldb) po urlResponse
<NSHTTPURLResponse: 0x7fb9bf80> { URL: https://api.twitter.com/1.1/statuses/update.json } { status code: 200, headers {
"Cache-Control" = "no-cache, no-store, must-revalidate, pre-check=0, post-check=0";
"Content-Disposition" = "attachment; filename=json.json";
"Content-Encoding" = gzip;
"Content-Length" = 751;
"Content-Type" = "application/json;charset=utf-8";
Date = "Thu, 02 Apr 2015 17:14:20 GMT";
Expires = "Tue, 31 Mar 1981 05:00:00 GMT";
"Last-Modified" = "Thu, 02 Apr 2015 17:14:20 GMT";
Pragma = "no-cache";
Server = "tsa_b";
"Set-Cookie" = "lang=en";
Status = "200 OK";
"Strict-Transport-Security" = "max-age=631138519";
"x-access-level" = "read-write";
"x-connection-hash" = 6f61f3c96ba990931cca3fa950a42b38;
"x-content-type-options" = nosniff;
"x-frame-options" = SAMEORIGIN;
"x-response-time" = 51;
"x-transaction" = b2c77803db7e996d;
"x-tsa-request-body-time" = 426;
"x-twitter-response-tags" = BouncerCompliant;
"x-xss-protection" = "1; mode=block";
} }
最佳答案
在我发布这篇文章时,update_with_media 已被弃用。虽然它现在可以正常工作,但将来可能会突然停止 - 这可能会导致您的应用将来无法正常工作。
在大量阅读 Twitter 的 API 文档后,我设法在不使用“update_with_media”的情况下使其工作。
上传图片(或视频)涉及的过程是:
Use /media/upload.json SLRequest to first upload the media (image or video). Use nil parameters and add the image using "addMultipartData" method of SLRequest.
Call performRequestWithHandler on that SLRequest.
Wait for response from twitter to get the "Media ID" from the responseData (convert the data into JSON format) and retrieve "media_id_string" into an NSString.
Initiate another SLRequest with /statuses/update.json and attach the Media ID (key:media_ids) into the parameters dictionary together with the status text (key:status).
NSDictionary *parameters = @{@"status": @"See my image:",
@"media_ids": mediaID };
- Call performRequestWithHandler on the second SLRequest to submit the tweet.
有关详细代码,请参阅我的教程博客:http://xcodenoobies.blogspot.my/2016/01/how-to-using-slrequest-to-upload-image.html
关于ios - 使用 SLRequest 在推文中发布图片 - 图片未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29419001/
我们正在使用 VSTS 构建和发布通过 Xamarin 创建的 iOS 和 Android 应用程序。通过 VSTS 将 Android 应用发布到商店相对简单。有人可以指导我或提供一些如何通过 VS
我一直在研究 Spring Social Facebook 的 publish(objectId, connectionName, data) API ,但不确定此 API 的用法(遗憾的是,由于缺少
我正在使用 django viewflow 创建一个发布流程: 用户创建对象 它进入审核流程,其状态为待处理(公众不可见) 经过审核和批准后,就会发布并公开可见。 如果用户编辑同一实体,则会再次进入审
我正在尝试进行 API 调用,并且 API 需要格式为 XML: Security GetSessionInfo 999999999999 0 2 {
我已经查看了所有 StackOverflow,但没有找到适合我的案例的解决方案我有 405 HttpStatusCode 调用 API/Regions/Create 操作这是我的 baseContro
如果我切换到新版本的SpringBoot,我在启动应用程序时会得到上面的错误信息。这是为什么? 最美好的祝愿史蒂文 pom.xml 4.0.0 de.xyz.microservice spring
我有一个场景,页面导航是从一个域到另一个域完成的。例如,导航是从 http://www.foo.com到 http://www.bar.com在 JavaScript 中单击按钮 重定向时,我需要将用
这半年来一直深耕包头,这个城市比较不错,但是推进项目的难度确实挺大的。与开发产品相比,后者更省心。但是光研发产品,没有项目
我正在阅读有关 Github 版本 的信息,它似乎很适合您的项目。因为我们需要决定将哪些功能用于生产,哪些不用于。 我无法理解的部分是,master 和 release 分支如何在其中发挥作用。 Sh
我将一些代码推送到远程存储库,然后在 GitHub 上创建了第一个版本,并将其命名为 'v0.0.1'。 GitHub 现在显示我现在有一个版本,并且还在“标签”中显示我有一个标签 “v0.0.1”。
如果我有一个具有以下文件/文件夹结构的 GitHub 存储库 github.com/@product/template: /build /fileA /fileB /src /genera
我有一个 Maven 多模块项目。 当代码开发完成后,我们想在 Jenkins 中编写一个分支构建作业,它分支代码,增加主干中的 pom 版本,并删除 -SNAPSHOT 来自分支中的 pom 版本。
我有一个非常大的集合(约 40000 个文档,包含约 20-25 个字段,包括包含一组约 500 个项目的数组字段)和约 2000 个订阅者(他们现在只是机器人)。 因此,当用户订阅整个集合(不包括服
如果我正在使用消息队列构建一个包含数十个发布者/订阅者的系统,那么我似乎有一些网络配置选项: 我可以拥有一个所有机器都使用的集群代理 - 每台机器都没有本地队列 我可以在每台机器上本地安装代理,并使用
我正在使用 Flash Develop,并且创建了一个 ActionScript 3.0 项目。它启动并读取一个 xml 文件,其中包含图像的 url。我已将 url 保留在与 swf 相同的文件夹中
如果我在一个句子中使用 alloc 和 retain 声明一个 NSArray 那么我应该释放 NSArray 对象两次(即[arrayObject release] 2次)? 最佳答案 如果您在同一
我正在尝试在 Node 中实现发布/订阅模式,但不使用 Redis。功能应该是相同的;您可以发布到 channel ,订阅 channel 并收听数据(如果您已订阅);以下是 Redis 功能: pu
编辑:这个问题、一些答案和一些评论,包含很多错误信息。见 how Meteor collections, publications and subscriptions work准确理解发布和订阅同一服
我正在开发一款 DirectX 游戏,我发现在发布版本中我的平均帧速率为 170fps,但是在调试版本中我的帧速率约为 20fps。 我想知道发布和调试版本之间的巨大差异是否正常,特别是因为在调试中我
是否有办法回滚 Windows Azure 网站和 SQL 部署/发布? 我发布了一个网站,现在它导致了很多错误,我想回到之前的状态并进一步处理代码。 这可能吗? 最佳答案 如果您使用 Git 或 T
我是一名优秀的程序员,十分优秀!