The Application Programming Interface (API) for twitter.com
44
votes
3answers
13k views
Is there a way to get an user's email ID after verifying her Twitter identity using OAuth?
I am new to OAuth and have been playing around with the Twitter API. I am able to fetch the credentials of an user after authentication by making a request to ...
14
votes
2answers
13k views
Twitter API - Logout
I'm using OAuth in my web app, and users can login with twitter.
I want to add "switch twitter account" button, which actually clears the session and then opens the authorize_url.
As clearing the ...
1
vote
3answers
9k views
another twitter oAuth cURL access token request that fails
The following function gives a validation error instead of the token:
failed to validate oAuth signature and token
function request_token()
{
// Set url
$url = ...
6
votes
3answers
5k views
Can we post image on twitter using twitter API in Android?
I had successfully integrate twitter API and I am able to post text from my device but I want to know two things
Is is possible to post Image on twitter using API in Android ?
In twitter we used ...
3
votes
3answers
4k views
Upload Images On Twitter Using PHP
How i can upload image on Twitter Wall using consumer_key and consumer_secret without login using PHP?
Please help me & thanks a lot.
10
votes
7answers
26k views
Checking For Internet Connectivity in Objective C
I've been working through the Stanford iPhone Coding course and currently hooking into the Twitter API. What I'd like to do is accurately handle two error conditions: One for when the username is ...
7
votes
2answers
5k views
Android - How to filter specific apps for ACTION_SEND intent
How can you filter out specific apps when using the ACTION_SEND intent? This question has been asked in various ways, but I haven't been able to gather a solution based on the answers given. ...
3
votes
3answers
8k views
Accessing JSON service from localhost or file://
I am making a html page intended to be run locally on a PC, preferably without a local server runing (file://). I am also using jQuery to make manipulation/AJAX a little easier.
I am trying to load 2 ...
2
votes
2answers
2k views
Problem in Callback in Twitter in Android
I have implemented Twitter in my application , i am facing problem in Callback.
Twitter API's has been updated recently so i am unable to send Callback URL.
Also the Setting Page now change there is ...
11
votes
3answers
26k views
Twitter API - Display all tweets with a certain hashtag?
How would I go about displaying tweets that contain a certain hashtag using the Twitter API? Thanks
I'd also like to know if there is a way to get all tweets from a certain hashtag in a separate ...
5
votes
2answers
2k views
how to cache the twitter api result?
I would like to cache the result of the twitter api result and display them to users..
What's the best method to cache the result?
I'm thinking a writing the result into a file based on a time ...
1
vote
2answers
3k views
How to do a RETWEET on an iPhone twitter app (MGTwitterEngine)
How to do a RETWEET on an iPhone twitter app (MGTwitterEngine)
2
votes
1answer
11k views
Twitter API: search people by email
I'm trying to find people via Twitter API.
I use urls like this: https://api.twitter.com/1/users/[email protected]
But there's a problem. For example, when I search by email ...
0
votes
1answer
458 views
Twitter API - Reply to a retweet
I am writing a little twitter API (using Elliot Haughin's library) and I want to reply to a retweet that the app posts.
I have read the docs for statues/update, and have tried using ...
12
votes
5answers
16k views
Twitter API + OAuth: Can't send status updates, getting 401
I'm trying to use Twitter's API and OAuth to send status updates (new Tweets). I am using Shannon Whitley .NET code example http://www.voiceoftech.com/swhitley/?p=681 (as recommended on the Twitter ...