DotNetShoutout - Stories tagged with social network
5
Shouts

Web 2.0 | Twitter authentication using OAuth

published 989 days, 21 hours, 39 minutes ago posted by farooqkaiserfarooqkaiser 990 days, 18 hours, 28 minutes ago
Monday, September 06, 2010 2:06:01 PM GMT Sunday, September 05, 2010 5:16:51 PM GMT
As of August 31,2010, Twitter has stopped using basic authentication. applications will all use OAuth, an authentication method that lets you use apps without them storing your password. To learn more about OAuth, please visit @ http://oauth.net. Register your new application with Twitter You'll need a name and url for your application in order to register it, and you'll need to define a callback url. The callback url is the full url of the page Twitter should send the user to after it's done authe... (more)
category: Web Dev | clicked: 0 | comment | | source: www.fairnet.com
tags: .NET, C#, API, social network, ap.net
5
Shouts

Web 2.0 |     Dotnet Articles Dotnet Help Dotnet Books   Jobs    Technology and Web development

published 989 days, 21 hours, 39 minutes ago posted by farooqkaiserfarooqkaiser 990 days, 18 hours, 31 minutes ago
Monday, September 06, 2010 2:06:01 PM GMT Sunday, September 05, 2010 5:14:15 PM GMT
As of August 31,2010, Twitter has stopped using basic authentication. applications will all use OAuth, an authentication method that lets you use apps without them storing your password. To learn more about OAuth, please visit @ http://oauth.net. Register your new application with Twitter ... [More] (more)
category: Web Dev | clicked: 2 | comment | | source: www.fairnet.com
tags: .NET, C#, API, social network, ap.net
11
Shouts

Web 2.0 | Building Twitter Application using TweetSharp

published 1047 days, 1 hour ago posted by farooqkaiserfarooqkaiser 1048 days, 21 hours, 24 minutes ago
Sunday, July 11, 2010 10:44:53 AM GMT Friday, July 09, 2010 2:20:43 PM GMT
In this article, i will examined how to build twitter app using TweetSharp. Tweetsharp library is available at codeplex here. Here is a code that searches Twitter using TweetSharp. 1:using TweetSharp.Twitter.Fluent; 2:using TweetSharp.Twitter.Extensions; 3:using TweetSharp.Twitter.Model; 4:  5: var qry = FluentTwitter.CreateRequest() 6: .Search().Query() 7: .Containing("#Toronto OR #Canada").Take(20).AsJson(); 8:  ... (more)
category: Web Dev | clicked: 3 | comment | | source: www.fairnet.com
tags: C#, API, social network, Twitter