gpt4 book ai didi

ios - iOS 上的 Facebook 分享对话框 : "Publish" button always greyed out

转载 作者:行者123 更新时间:2023-12-04 15:17:29 24 4
gpt4 key购买 nike

我在 Facebook 开发者网站上创建了一个自定义的开放图形对象、 Action 和故事,然后按照教程进行操作,以便能够通过官方 FB 应用程序(无需登录应用程序)发布它。这是代码:

NSMutableDictionary<FBGraphObject> *object;
NSString *returnUrl = [NSString stringWithFormat:@"http://tettomante.it/questions?%@",
[NSString stringWithURLParams:@{@"answer": _answerLabel.text, @"divination": [self divinationNickname]}]];

object = [FBGraphObject openGraphObjectForPostWithType:@"boobs-teller:question"
title:_questionTextView.text
image:@"https://d1rdorpdffwq56.cloudfront.net/icona_tettomante.jpg"
url:returnUrl
description:_answerLabel.text];

NSMutableDictionary<FBOpenGraphAction> *action = (NSMutableDictionary<FBOpenGraphAction> *) [FBGraphObject openGraphActionForPost];
action[@"question"] = object;

// Check if the Facebook app is installed and we can present the share dialog
FBOpenGraphActionShareDialogParams *params = [[FBOpenGraphActionShareDialogParams alloc] init];
params.action = action;
params.actionType = @"boobs-teller:ask";
params.previewPropertyName = @"question";

// If the Facebook app is installed and we can present the share dialog
if([FBDialogs canPresentShareDialogWithOpenGraphActionParams:params]) {
// Show the share dialog
[FBDialogs presentShareDialogWithOpenGraphActionParams:params
clientState:nil
handler:^(FBAppCall *call, NSDictionary *results, NSError *error) {
if(error) {
// There was an error
NSLog(@"Error publishing story: %@", error.description);
}
else {
// Success
NSLog(@"result %@", results);
}
}];
}

问题是,一旦在 FB 应用程序中,自定义故事预览就会正确显示并在大约 10 秒后消失,同时顶部的“发布”按钮被禁用(变灰)并且不会自行启用。我不明白这是怎么回事。我认为这可能是因为该应用程序处于沙盒模式(我使用的是管理员用户,所以这应该无关紧要),所以我将其公开但没有任何改变。然后我想我必须让 FB 审查自定义操作,所以我也整理了一下,但没有任何改变。现在我不知道接下来要尝试什么。

最佳答案

我在创建新应用时遇到了同样的问题。 Open Graph 标签必须完全正确,否则您将无法发布您的故事。

检查以确保在 Facebook 应用面板中创建的对象和操作与您在代码中列出的相匹配。

object = [FBGraphObject openGraphObjectForPostWithType:@"boobs-teller:question"

在这一行中,“boobs-teller”应该是您列为应用命名空间的内容(Facebook 应用 > 设置 > 基本),“问题”应该是您在应用仪表板。如果您还没有创建这些,请转到此处:https://developers.facebook.com/apps

params.actionType = @"boobs-teller:ask";

在这一行中,“boobs-teller”应该是您的应用命名空间,“ask”是您在应用仪表板中创建的自定义操作(打开图表 > 操作类型)。

更多细节在这里:https://developers.facebook.com/docs/ios/open-graph/

您还可以在 GitHub 上查看示例 iOS 应用程序,FBOGSampleSD 应用程序在学习 Open Graph 时帮助了我很多。 https://github.com/fbsamples/ios-howtos

关于ios - iOS 上的 Facebook 分享对话框 : "Publish" button always greyed out,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21552944/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com