Most answers to this questions suggest to make sure your Twitter app is setup as a "web app" and not a "desktop app"... in the current Twitter dev site... I do not see this option.

I also made sure to provide a callback URL when first setting up my app.

Any thoughts?

link|improve this question

Providing a callback URL is what makes it a "web app". There should be an error message returned with the 401 that should say what is wrong. – abraham Feb 28 at 6:09
feedback

2 Answers

The API returns a 401 when the OAuth tokens you've provided are revoked/invalid or any time you attempt an action for which you do not have access. For example, if your application is read-only and it attempts to post a tweet, a 401 will be returned.

Twitter does provide an error message and Twitterizer will return that to you when it can. It is in the ErrorMessage property of the response.

link|improve this answer
feedback

Use the callback url for your app. For local development, you can use 127.0.0.1 or proxied address like http://www.localhost.com. Then, error will disappear. Thanks.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.