如何在我的个人资料中使用 TwitterKit 进行推特?

How to twitting in my profile use TwitterKit?

如何使用 TwitterKit 在我的个人资料中发推文?

在 dev.twitter.com 中,我找到了如何创建表单并发送,但我总是看到错误 "Tweet failed to send"

let composer = TWTRComposer()

composer.setText("just setting up my Twitter Kit")
composer.setImage(UIImage(named: "twitterkit"))

// Called from a UIViewController
composer.show(from: self.navigationController!) { (result in
    if (result == .done) {
        print("Successfully composed Tweet")
    } else {
        print("Cancelled composing")
    }
}

在应用程序管理中,您的 Twitter 应用程序需要 select "Read, Write and Access direct messages" 权限。