-1

我想知道如何重定向应用程序,以便它将重定向到系统的集成推特(“我”磁贴中的“发布消息”按钮)以及如何集成推特代码以仅显示推特提要一个我指定的三个人?(全部使用VB)

4

1 回答 1

0

To bring up the Twitter share option you use

Dim shareStatusTask As ShareStatusTask = new ShareStatusTask()
shareStatusTask.Status = "status"
shareStatusTask.Show()

There's no built in way to show tweets in your app so you'll need to write custom code to get that done via the Twitter API.

于 2012-09-25T13:51:39.047 回答