kusanagi
kusanagi

Reputation: 14624

php twitter post message with oauth

is any simple methods to work with my twitter-account in my php app? any Internet samples show how to work with any different accounts (with web-page allow-deny), but i need use only my twitter account

Upvotes: 1

Views: 3865

Answers (3)

Adam Green
Adam Green

Reputation: 1356

This tutorial will lead through the process of tweeting to your own account using PHP and OAuth:

http://140dev.com/twitter-api-programming-tutorials/hello-twitter-oauth-php/

Upvotes: 3

VoronoiPotato
VoronoiPotato

Reputation: 3183

EDIT: You are totally correct, Twitter requires you to have Oauth,and this is a little more robust than the other code. Here's another code example that does use Oauth.

Upvotes: -2

brian_d
brian_d

Reputation: 11395

https://github.com/abraham/twitteroauth uses the new oauth authentication

Upvotes: 3

Related Questions