- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在寻找如何使用 SLRequests 将 Facebook 集成到 iOS6 中。经过一些研究,我能够做到这一点。下面是一些代码片段,展示了它是如何完成的。
{
ACAccountStore *accountStore = [[ACAccountStore alloc] init];
__block ACAccount *facebookAccount = nil;
ACAccountType *facebookAccountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierFacebook];
// Specify App ID and permissions
NSDictionary *options = @{
ACFacebookAppIdKey: @"012345678912345",
ACFacebookPermissionsKey: @[@"publish_stream", @"publish_actions"],
ACFacebookAudienceKey: ACFacebookAudienceFriends
};
[accountStore requestAccessToAccountsWithType:facebookAccountType
options:options completion:^(BOOL granted, NSError *e)
{
if (granted)
{
NSArray *accounts = [accountStore accountsWithAccountType:facebookAccountType];
facebookAccount = [accounts lastObject];
}
else
{
// Handle Failure
}
}];
NSDictionary *parameters = @{@"message": @"My first iOS 6 Facebook posting "};
NSURL *feedURL = [NSURL URLWithString:@"https://graph.facebook.com/me/feed"];
SLRequest *feedRequest = [SLRequest
requestForServiceType:SLServiceTypeFacebook
requestMethod:SLRequestMethodPOST
URL:feedURL
parameters:parameters];
feedRequest.account = facebookAccount;
[feedRequest performRequestWithHandler:^(NSData *responseData,
NSHTTPURLResponse *urlResponse, NSError *error)
{
// Handle response
}];
}
我希望这对某人有帮助。
最佳答案
我有一篇关于如何使用 SLRequest 的文章。
-(IBAction)postMessage:(id)sender
{
// Create the URL to the end point
NSURL *postURL = [NSURL URLWithString:@"https://graph.facebook.com/me/feed"];
NSString *link = @"http://developer.apple.com/library/ios/#documentation/Social/Reference/Social_Framework/_index.html%23//apple_ref/doc/uid/TP40012233";
NSString *message = @"Testing Social Framework";
NSString *picture = @"http://www.stuarticus.com/wp-content/uploads/2012/08/SDKsmall.png";
NSString *name = @"Social Framework";
NSString *caption = @"Reference Documentation";
NSString *description = @"The Social framework lets you integrate your app with supported social networking services. On iOS and OS X, this framework provides a template for creating HTTP requests. On iOS only, the Social framework provides a generalized interface for posting requests on behalf of the user.";
NSDictionary *postDict = @{
@"link": link,
@"message" : message,
@"picture" : picture,
@"name" : name,
@"caption" : caption,
@"description" : description
};
SLRequest *postToMyWall = [SLRequest requestForServiceType:SLServiceTypeFacebook requestMethod:SLRequestMethodPOST URL:postURL parameters:postDict];
FacebookAccountManager* sharedManager = [FacebookAccountManager sharedAccount];
[postToMyWall setAccount:sharedManager.facebookAccount];
[postToMyWall performRequestWithHandler:^(NSData *responseData, NSHTTPURLResponse *urlResponse, NSError *error)
{
if (error) {
// If there is an error we populate the error string with error
_errorString = [NSString stringWithFormat:@"%@", [error localizedDescription]];
// We then perform the UI update on the main thread. All UI updates must be completed on the main thread.
[self performSelectorOnMainThread:@selector(updateErrorString) withObject:nil waitUntilDone:NO];
}
else
{
NSLog(@"Post successful");
NSString *dataString = [[NSString alloc] initWithData:responseData encoding:NSStringEncodingConversionAllowLossy];
NSLog(@"Response Data: %@", dataString);
}
}];
}
完整的帖子和应用程序可在此处下载:https://github.com/stuarticus/SocialFrameworkReference
关于iphone - 如何使用 SLRequest 在 iOS 6 中集成 Facebook?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12757449/
我正在使用 SLRequest 发布到用户的 Twitter 流,下面的代码可以在模拟器中发布,但不能在实际设备上发布。 //create the SLRequest and post to the
我一直在尝试利用内置的 iOS 帐户和 Twitter 框架检索 Twitter 用户数据。 我已成功访问手机上的用户帐户。但是,当向 twitter 发出 SLRequest 时,我收到未经身份验证
你好,对于我正在处理的项目,我必须在后台执行 n-SLRequest,所以我要做的是将这些请求添加到 NSOperationQueue,如下面的代码所示 - (void)performBatchReq
使用 SLRequest 与 Facebook 集成时是否强制使用 app Id 实际上我没有 App id,那么是否可以使用 SLRequest 集成 Facebook使用 app id 因为我没有
我正在使用 iOS 社交框架和 SLRequest 对象向 Twitter/Facebook API 发出请求- http://developer.apple.com/library/ios/#doc
我正在尝试在我的iOS应用程序中实现“在Twitter上关注我们”。这是我的代码。但是它给出错误“无法准备URL请求”。请帮忙! ACAccountStore *accountStore = [[AC
如何使用 SLRequest 将 UIImage 附加到 Facebook 上的帖子。这是我的代码: SLRequest *facebookRequest = [SLRequest requestFo
我有两种方法可以将图片分享到 Facebook。 SDK 方式(工作完美): FBSDKSharePhotoContent *content = [[FBSDKSharePhotoContent al
我是 Sam。目前我正在我的应用程序中开发 Twitter 分享。我需要在没有 ComposeController 的情况下实现它。我需要与来自社交框架的 SLRequest 集成。我使用的代码如下
我正在使用适用于 iOS 6 的新社交 API 实现 Facebook 视频上传,一切正常,只是我没有找到一种方法来了解上传的进度……Apple 似乎唯一的 API提供的是,如果上传完成或者失败,有可
我想在 twitter 中使用 SLRequest 获取用户个人资料信息? 目前我正在编码 NSURL *url = [NSURL URLWithString:@"https://api.twit
我正在尝试使用 SLRequest iOS API 获取 facebook 数据,这似乎工作正常 - NSDictionary *parameters = @{}; NSURL *feedURL =
我正在尝试使用 SLRequest 以编程方式将图像(从 iOS 设备)上传到用户的 Twitter 帐户。推文文本已上传到推文中,但图片从未出现。响应状态码为200。 显然基础工作正常,否则推文根本
我正在尝试分享动画 GIF 但默认 UIActivityViewController Twitter 分享 doesn't support但它会将其“缩小”为静态 JPG,我必须按照 this art
我已经使用 SLRequest 获取个人资料信息,并且我遵循了 Getting user profile picture in iOS6?获取个人资料图片。但它返回 50x50 图像尺寸。我需要大尺寸
在使用 SLRequest 时,有一些关于在 iOS 应用程序中发送推文的很棒的教程。然而,他们中的大多数人只是从 Twitter 帐户中提取最后一个对象。由于在 iOS 设置中可以登录多个 Twit
我目前正在使用 SLRequest 让用户喜欢我们的应用程序页面以换取虚拟货币/新角色。我需要设置哪些参数才能允许这样做?我已经获得了 public_actions 权限。 我发现了以下内容,但我仍然
我有上传照片的应用程序,就像在 Instagram 应用程序中一样。首先我的应用上传照片并返回链接。然后在状态消息中发送链接。当我在我的 iPhone 上测试时,一切正常,但当我在另一部 iPhone
我正在尝试将 Twitter 时间轴添加到我的 iOS 应用程序中。推特在这里给出了官方的示例代码: https://dev.twitter.com/docs/ios/making-api-reque
让我澄清一下。我没有使用 Facebook SDK。我使用 iOS SDK 的 Social.framework 和 ACAccountStore 访问 Facebook 帐户,并使用它/它们发帖。
我是一名优秀的程序员,十分优秀!