twitpic

Trouble uploading to twitpic

Hi, I am trying to upload a photo using the API and am having an issue that I hope you can help me with. Below, I have pasted the http request to the API (minus the twitter username/password). I am getting an error message back saying image not found, even though the image is there with the proper name "media". I have created a simpl...

Twitpic not working, Posterous is... why?

I was using the Twitpic API from in my iPhone app for a while with no problem, then suddenly it started reporting: invalid username or password. I changed the URL to that of yfrog and they reported: could not find the media. I changed the URL to that of Posterous and it works. I've done some Googling and I can't find any problems wi...

How can I get the link to the twitpic-site with the latest image of a specific user?

Hello, I wrote a little app that uploads a selected picture form the ImagePicker to twitpic with this code (extract): - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info { [picker dismissModalViewControllerAnimated:YES]; UIImage * images = [info objectForKey:@"UIImag...

Parsing Data returned from Twitpic API

Hi there, I just wanted to ask you if anyone can help me parsing the returned data from the Twitpic API? I'm creating a HTTPFormRequest using the ASIHTTPRequest Wrapper for Cocoa. This all happens in an iPhone application: NSURL *url = [NSURL URLWithString:@"http://twitpic.com/api/upload"]; NSString *username = t_user; NSString *pa...

Image not found exception while posting to twitpic using httpclient

Hi group, I am using commons-httpclient-3.1 jar file to Post multipart file to twitpic , iam getting Image not found exception here is my code HttpClient client = new HttpClient(); client.getHttpConnectionManager().getParams().setConnectionTimeout(100000); PostMethod method = new PostMethod("http://twitpi...

TwitPic Multiple image upload

Has anybody experienced Timeout error with TwitPic API using ASIFormDataRequest when uploading multiple images? Status updates without images are fine. I was trying to upload the exact same 2 images. The first request went through fine, but the second one was timeout. It also happens when multiple images are uploaded, some went through, ...

Twitpic API: image comments

Does anyone know whether there's a way to retrieve the latest comments posted against an image on Twitpic - I can't find anything in their API. Any suggestions? ...

Rails regex to extract Twitpic link/code if present

Provided a url, within a string of text (tweet) such as "Check out my twitpic http://twitpic.com/1876544594 its awesome" I need a Rails regex that will return 18744594, the id of this particular twitpic... This question has been asked here but was for PHP, and I need it for Rails. I would also be able to pull the name of the site, s...

Integrating twitpic OAuth for iPhone.

How can I integrate twitpic API with OAuth for posting an image from iPhone? Any help or tutorial? Currently I am doing... NSURL *twitpicURL = [NSURL URLWithString:@"http://api.twitpic.com/2/upload.format"]; theRequest = [NSMutableURLRequest requestWithURL:twitpicURL]; [theRequest setHTTPMethod:@"POST"]; // Set the ...

How do I upload an NSImage(NSData)to Twitpic with OAMutableURLRequest?

I'm using OAConsumer in my xAuth twitterEngine and i'm adding Twitpic OAuth Echo to it. But it won't POST the NSData. here is some of my code: //other file NSArray *reps = [[imageToUpload image] representations]; NSData *imageData = [NSBitmapImageRep representationOfImageRepsInArray:reps usingType:NSJP...

Integrating Twitpic with OAuth Echo authentication into iPhone application

Has anyone had any luck integrating Twitpic's new OAuth Echo authentication into their iPhone application? This seemed to be a simple task but it's not getting done. I keep getting 400 or 401 errors. This is also being discussed here: OAuth Echo problems p.s. I'm using Ben Gottlieb's Twitter-OAuth library. ...

Having problems with uploading photos to TwitPic using OAuth in Objective C on the iPhone

I have been working on an iPhone app that has a feature of uploading photos to TwitPic. I have it working with basic authentication. I am trying to get it working with OAuth. I am getting authentication errors. I have studied very carefully the TwitPic documentation. I am authorising the app by displaying a UI Web View and the it re...

Upload picture to twitter from iPhone

Is it possible to programmatically upload a picture to twitter from iPhone? Can this be done through twitter directly, or do I need to use a third-party service like Twitpic? ...

RSS Feed to Twitpic

I'm curious to what is required to translate an xml feed of images to TwitPic. Is it possible? Can it be done with Ruby on Rails? Is it against TwitPic's Terms of Service? What is the best method of getting pictures on twitter automatically? (Established services like TwitPic, yFrog, etc are preferred because most twitter apps display th...

OAuth Echo TwitPic — Working with a Twitter client on the iPhone

Hey everyone, I've been trying to get Twitpic to work successfully in uploading a picture through my iPhone app. This has worked fine in the past however now they've changed all their auth code. This is what I've got, and for some reason is just giving me a failure: oAuth = [[OAuth alloc] initWithConsumerKey:twitter_consumer_key andCon...

Porting twitpic api curl example to c#, multipart data?

So twitter changed its way of doing authentication to OAuth, I finally had no choice but to update my app. I got the twitter stuff working (So i have a nice bit of saved OAuth information in my application) now I have to get the twitpic api working again. There are no libraries that handle the OAuth that I found so I am having to do it...

ShareKit and TwitPic

Heya has anyone tried out sharekit www.getsharekit.com Im looking for a simple plug n play way to get photos to twitter. Let me know if anyone has achieved this. ...

Parsing twitter media in Python

Hello, can anyone tell me, is there any kind of python library, that parses a tweet (text data), and takes out links to popular media sharing services, like, twitpic, tweetphoto, and so on. I know, it's pretty easy to do it myself, but I think that existing tools might know more services, and maybe have API to access those services as w...

How can I hotlink/embed a Twitpic image?

So in this URL: http://twitpic.com/2paihn The Twitpic ID is: 2paihn And the actual image URL is: http://s3.amazonaws.com/twitpic/photos/large/163413275.jpg?AWSAccessKeyId=0ZRYP5X5F6FSMBCCSE82&Expires=1284740401&Signature=6lgT6ruyyUDDjLOB7d42XABoCLU%3D I've tried getting the integer id through the api (i.e. 163413275) and repl...