views:

75

answers:

3

Is there a method that can post a status to Facebook or Twitter. Twitter has this:

http://www.twitter.com/?status=This+is+the+status+that+will+be+grabbed+by+Twitter

What about Facebook?

Thanks.

I know about doing it by cURL, but I'm not asking about that :p

A: 

You're nearly right for twitter. Try:

http://twitter.com/?status=Your+Update+Here

Hate to say it, but I don't think it's possible with Facebook. At least, not without an application or some wizardry.

Tom Wright
Not being a Twitter user myself, I'm shocked that this exists. Doesn't this allow anyone to create a malicious link that when you click it posts an arbitrary message to Twitter if you have a login cookie?
Tyler McHenry
Nope, it doesn't actually post it. All it does is populate the message box.
Tom Wright
A: 

There is not an option like this for facebook. To do this, it involves writing an application using their API in order to post any type of status update.

desertwebdesigns
why vote down this comment??
samuelf
+2  A: 

If you want to publish a status to facebook, you must use the HTTP POST operation. So, no, there is no GET-based URL via which you can publish an update.

In theory, you could create an HTML form that would POST. You'd need to get an auth token somehow, though.

Frank Farmer