flpvn / wittytwitter

Automatically exported from code.google.com/p/wittytwitter
0 stars 0 forks source link

Add support for Twitpic #154

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
It would be very useful to have built in support for Twitpic. Twitpic is a
service that allows to post Photos on Twitter. 
They offer an own API which enabels developers add this ability to their
programs. 

Original issue reported on code.google.com by BirdofPr...@googlemail.com on 14 Sep 2008 at 2:48

GoogleCodeExporter commented 9 years ago

Original comment by jfol...@gmail.com on 15 Sep 2008 at 4:24

GoogleCodeExporter commented 9 years ago
API info: http://twitpic.com/api.do

I was thinking about implementing this with drag-and-drop; drop an image file 
onto 
Witty and and it uploads it to TwitPic (maybe with a prompt first, in case it 
was 
accidental) and adds the link to the update box. Thoughts?

Original comment by jongallo...@gmail.com on 24 Dec 2008 at 6:19

GoogleCodeExporter commented 9 years ago
This would be a good way to implement this. Perhaps it should be possible to
deactivate the prompt in the settings menu.

Original comment by BirdofPr...@googlemail.com on 24 Dec 2008 at 11:18

GoogleCodeExporter commented 9 years ago
I would love to have this feature implemented. I use Twitpic quite a bit, it's 
annoying 
to go upload it from their site...

Original comment by evan.rob...@gmail.com on 15 Jun 2009 at 5:06

GoogleCodeExporter commented 9 years ago
tweet# supports twitpic. I don't have time to do it right now, but here's the 
code
for it.

http://code.google.com/p/tweetsharp/wiki/AdditionalFeatures

// without text, just posts the photo url as the status
var twitter = FluentTwitter.CreateRequest()
    .AuthenticateAs(TWITTER_USERNAME, TWITTER_PASSWORD)
    .Photos().PostPhoto("failwhale.jpg")
    .Statuses().Update("")
    .AsJson();

Original comment by jongallo...@gmail.com on 15 Jun 2009 at 5:55