nst / STTwitter

A stable, mature and comprehensive Objective-C library for Twitter REST API 1.1
BSD 3-Clause "New" or "Revised" License
999 stars 165 forks source link

How to post text or image to twitter? #257

Closed sonysum closed 8 years ago

sonysum commented 8 years ago

I want to share my image or text from app to twitter Can i do it on STTwitter?

nst commented 8 years ago

please have a look at the documentation and the sample projects

sonysum commented 8 years ago

Thanks you for reply i'm a new iOS developer, Could you tell me detail about it?

nst commented 8 years ago

First, you have to authenticate on Twitter. You can use to use the account defined in iOS settings, like here: https://github.com/nst/STTwitter/blob/master/demo_ios/STTwitterDemoIOS/ViewController.m#L68-L81

Next, you have to post the text and/or images. You can use the following method:

- [STTwitterAPI postStatusUpdate:inReplyToStatusID:latitude:longitude:placeID:displayCoordinates:trimUser:successBlock:errorBlock:]
sonysum commented 8 years ago

Thanks you