我正在通过twitter本地应用程序为我的应用程序进行Twitter共享。成功推文后,它不会重定向到我的应用程序。我谷歌这个问题我发现,如果我们在dev.twitter.com中为我的应用程序设置回调URL,它将在共享后回拨给我的应用程序。 任何人都可以告诉我如何为我的应用程序设置回调网址
我使用以下代码通过twitter原生应用分享。
NSURL *instagramURL = [NSURL URLWithString:@"twitter://post?message=hello%20world"];
if ([[UIApplication sharedApplication] canOpenURL:instagramURL]) {
[[UIApplication sharedApplication] openURL:instagramURL];
}