问题标签 [twitterkit]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
293 浏览

android - 如何获取用于 Twitter 推文调度的 Account_id?

我试图通过我正在开发的应用程序安排推文。我关注的链接是: https ://developer.twitter.com/en/docs/ads/creatives/api-reference/scheduled-tweets.html 它指定

资源 URL https://ads-api.twitter.com/2/accounts/:account_id/scheduled_tweets 有人可以帮我弄清楚 account_id 是什么吗?以及如何获得它。谢谢

0 投票
1 回答
698 浏览

ios - Tweeting using Twitterkit fails when Twitter app is not installed in iOS 11

I am following the documentation of twitter and below is the example code they have given to check logged in user session and tweet using the TWTRComposer.

Now, for the case when Twitter app is not installed, the flow goes to the else part given below:

Twitterkit should open webview here to ask for twitter login, which is not happening. Anyone have any clue? Any help would be greatly appreciated.

Thanks & Cheers.

0 投票
1 回答
277 浏览

ios - TwitterKit 3.3.0 的 TWTRSession 问题

应该返回一个 s 数组TWTRSession。然而,元素的类型是无类型的 ( Any),并且使用 TWTRSession 进行转换if let authsession = any as? TWTRSession失败。此外,强制施法显然会崩溃。

崩溃错误:

这是一个非常有趣的错误,你不觉得吗?TWTRSession 匹配,但可以肯定的是,十六进制值不匹配。

哦,这一直工作到 3.3.0 之前。Twitter 人员没有发布说明或迁移说明。事情只是默默地停止工作。

相关:TWTRTwitter sessionStore 现在返回 TWTRAuthSession:那么现在如何访问 userName 属性?

0 投票
1 回答
468 浏览

ios - XCode Objective-C Apple Mach-O 链接器错误

最近开始使用 XCode 制作应用程序。安装 cocoapods 并使用 pod init 并安装后出现此错误...甚至还没有开始编写代码并且失败了...知道可能是什么原因吗?我在网上尝试了所有方法,但没有奏效

以下图片为错误截图:

在此处输入图像描述

在此处输入图像描述

新的屏幕截图

0 投票
0 回答
446 浏览

ios - Twitter登录不适用于Twitter应用程序ios

我正在 ios 目标 c 中实现从 twitter 登录。如果设备中未安装 Twitter 应用程序,则以下代码运行良好,它会重定向到 safari 并从 twitter 成功登录,但如果安装了 twitter 应用程序,它会重定向到 twitter 应用程序但没有任何反应。请帮忙。谢谢

应用代理

0 投票
0 回答
202 浏览

ios - 如何使用 Twitter 工具包更改 Twitter 帐户

我实现了 Twitter 分享按钮,但是没有像这张图片那样更改 Twitter 帐户的列。如果我从该帐户注销,我将无法授权(登录)另一个帐户。要授权的视图永远不会出现。

它有 Account 和 Location 列

我的应用没有 2 列(“帐户”和“位置”)。所以除非我一开始授权,否则我不能更改帐户。我怎么解决这个问题?

(如果可能的话,最好在授权和推文一次后从所有帐户注销时能够授权帐户。但我不知道该怎么做......)

0 投票
0 回答
199 浏览

ios - TWTRComposerViewController 没有出现在 iPhone X 横向

我们正在我们的横向应用程序中实现 TWTRComposerViewController,以便使用在应用程序中创建的视频从应用程序发布推文。我们正在使用以下编写的代码:

这适用于所有手机,iPhone 6、6S、7、7 plus,但在 iPhone X 中,作曲家不会出现。如果我们检查presentedViewController,那么它会显示TWTRComposerViewController 出现了,但是App 上什么也没有出现,并且屏幕冻结了。

0 投票
1 回答
304 浏览

ios - 撰写推文连接应用程序或授权网络不做任何事情

我按照这里的指南进行操作。 https://github.com/twitter/twitter-kit-ios/wiki/Compose-Tweets

在物理设备上,如果我安装了 twitter 应用程序,并且我触发了撰写推文的操作,它会打开 twitter 应用程序,并要求连接已登录的 twitter 帐户。我单击连接,然后它只是将我发送回应用程序。

知道发生了什么吗?

我的 ViewController 中的操作代码

0 投票
1 回答
180 浏览

swift - 用于 Swift 的 TwitterKit

如何将twitterkit导入swift?我努力了 :

“#import <TwitterKit/TWTRKit.h>”

但这不允许函数调用。

0 投票
1 回答
2051 浏览

ios - 在 info.plist 中设置的 Twitter URL 方案正在引发异常

有人指出这是一个重复的问题,是的,部分是的,我按照另一篇文章中的建议添加了 URLScheme,如下所示,同样建议我忘记添加到我的另一个目标,所以我做了,URL twitter-13145245245624 现在发生的情况是我的应用程序将用户重定向到他们的 Twitter 应用程序并请求允许我的应用程序使用他们的信息,一旦点击确定按钮,用户就会被重定向回我的应用程序,但仍然没有 Composer 填充 View to Tweet。还是一头雾水。感谢所有的帮助。

这是我的 info.plist,但是,我在 Facebook 上发帖没有问题。有什么想法吗?

问候 J