Skip to content

Archetype/TwitterPostWP7

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Post to Twitter using OAuth for authentication.  
The Webbrowser control detects an attempted redirect to the callback URL below 
so you will need to change it to whatever you specified when you set up your 
Twitter developer account.

= SecretKeys.cs =

To get started, create this file and link it into your project.  It should 
have the following contents:


namespace Twitter
{
    public static class SecretKeys
    {
        public static string Api { get { return "XXXX"; } }
        public static string Consumer { get { return "YYYY"; } }
        public static string ConsumerSecret { get { return "ZZZZ"; } }
		public static string CallbackUrl { get { return "URL"; } }
    }
}

About

Simple App to demonstrate posting to Twitter using the REST API. Uses OAuth and a web browser control for authentication.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages