gpt4 book ai didi

iPhone 应用程序 - Google plus share with pre-fill text

转载 作者:可可西里 更新时间:2023-11-01 04:31:15 24 4
gpt4 key购买 nike

我听说我们可以使用此链接在 Google+ 上分享 https://plus.google.com/share?url=YOUR_URL_HERE

我们如何向“分享/发布”添加文本? (就像在 Twitter 中一样,我可以设置“预填充文本”参数)它的 URL 参数是什么?有人可以帮忙吗?

最佳答案

如果您想将您的应用与 Google+ 紧密集成,我建议您使用此处概述的 SDK:https://developers.google.com/+/mobile/ios/

关于分享的一点:https://developers.google.com/+/mobile/ios/#share_on_google

创建您的共享对象:

GooglePlusShare *share =
[[[GooglePlusShare alloc] initWithClientID:clientID] autorelease];
share.delegate = self; // optional
appDelegate.share = share; //optional

在您按钮的 IBAction 中:

- (IBAction) didTapShare: (id)sender {
// Add code here to retrieve the value of "share"
// This could be self.share if this is a property of your ViewController
// or ((MyAppDelegate *)[[UIApplication sharedApplication] delegate]).share

[[[[share shareDialog]
setURLToShare:[NSURL URLWithString:@"URL_TO_SHARE"]]
setPrefillText:@"YOUR TEXT HERE"] open];

// Or, without a URL or prefill text:
[[share shareDialog] open];
}

Google+ 网址处理程序:

- (BOOL)application: (UIApplication *)application
openURL: (NSURL *)url
sourceApplication: (NSString *)sourceApplication
annotation: (id)annotation {
// ...

if ([self.share handleURL:url
sourceApplication:sourceApplication
annotation:annotation]) {
return YES;
}

// ...
}

关于iPhone 应用程序 - Google plus share with pre-fill text,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12508587/

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