mvc.net 中的 tweetsharp 实现

发布于 2024-10-13 17:42:24 字数 146 浏览 2 评论 0原文

你好 我想在我的 mvc.net 应用程序中使用 Tweetsharp 来获取朋友列表并与他们共享图像。 但我还没有获得适当的文档和示例。需要在控制器操作中添加什么以及在视图页面中添加什么。

请提供一些相同的链接。

谢谢穆尼什

Hi
I want to use Tweetsharp in my mvc.net application to get the list offriends and to share image with them.
But i haven't got the proper documentation and sample for the same. What is need to add in controller action and what in view page.

Please give some links for the same.

Thanks

munish

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烧了回忆取暖 2024-10-20 17:42:24
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

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);
}

Also note the code above uses a third party library called TweetSharp.

As for the images im not sure as to what to do but you can look at the twitter REST API v1.1 for information

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

指尖微凉心微凉 2024-10-20 17:42:24

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

I don't know about Tweetsharp but take a look at linq2twitter. It provides easy access to the Twitter API through the use of LINQ.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文