mvc.net中的tweetsharp实现

时间:2011-01-24 05:16:41

标签: tweetsharp

您好 我想在我的mvc.net应用程序中使用Tweetsharp来获取offriends列表并与它们共享图像。 但我没有得到相同的文件和样本。需要在控制器操作中添加什么以及在视图页面中添加什么。

请提供相同的链接。

由于

munish

2 个答案:

答案 0 :(得分:0)

public void MyMethod() {
    TwitterService service = new TwitterService(key, secret, "Token", "Secret");

    ListFriendsOptions options = new ListFriendsOptions();
    options.Cursor = 12345;

    // should the response have user entities
    options.IncludeUserEntities = false;

    // The screen name of the user for whom to return results for.
    options.ScreenName = "";

    options.SkipStatus = false;

    // The ID of the user for whom to return results for.
    options.UserId = 12345;

    // this will return a list of friends for the specified user.
    TwitterCursorList<TwitterUser> listOfFriends = service.ListFriends(options);
}

另请注意,上面的代码使用名为TweetSharp的第三方库。

至于图片我不知道该怎么做但你可以看一下twitter REST API v1.1获取信息

https://dev.twitter.com/docs/api/1.1/get/friends/list

https://dev.twitter.com/docs/api/1.1

TweetSharp https://github.com/danielcrenna/tweetsharp

答案 1 :(得分:-1)

我不知道Tweetsharp,但看看linq2twitter。它通过使用LINQ提供了对Twitter API的轻松访问。