Tagged Questions

The Application Programming Interface (API) for twitter.com

learn more… | top users | synonyms (1)

19
votes
2answers
4k 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 ...
15
votes
4answers
470 views

How to --> Offer a coupon for a Tweet

I've seen recently a few times when companies offer either a download link or a coupon code for people that will tweet about it. It is all automated and I would like to do something like this but I'm ...
12
votes
3answers
109 views

How to Add Phone With twitter using Third Party tool

I need a script that will add my phone with Twitter for All latest notification. I found this page Twitter but i need to create script for my own application. I goggled but i didn't get any solution ...
12
votes
1answer
4k views

Get current user's info from Twitter API

I am building a Twitter app (with oAuth) and I cannot find any info on how I can get the current user's info. By current user, I mean the user which granted my app permissions and for whom the app is ...
10
votes
2answers
7k 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 ...
9
votes
2answers
471 views

twitter api: What is the difference in following urls

Who can comment the following: import json, urllib url = "funnyfurniture.net/p/10/oops-chair/" url2 = "http://funnyfurniture.net/p/10/oops-chair/" tw_url = ...
8
votes
5answers
13k 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 ...
7
votes
4answers
1k views

Re-render Tweet button via JS

I used to use this snippet to re-render a Tweet button. var tweetButton = new twttr.TweetButton(twitterScript); twttr.render(); But it looks like widgets.js (http://platform.twitter.com/widgets.js) ...
7
votes
2answers
2k views

If I call Twitter API to get all of my followers, how many calls to the API is that?

If I want to download a list of all of my followers by calling the twitter API, how many calls is it? Is it one call or is it the number of followers I have? Thanks! Sriram
7
votes
3answers
2k views

Python Twitter library: which one?

I realize this is a bit of a lazyweb question, but I wanted to see which python library for Twitter people have had good experiences with. I've used Python Twitter Tools and like its brevity and ...
7
votes
3answers
2k views

MISSING_ARG_APIKEY when post to twitter by Sharekit

how to resolve it? #define SHKTwitterConsumerKey @"" #define SHKTwitterSecret @"" #define SHKTwitterCallbackUrl @"http://example.com/oauth" #define SHKTwitterUseXAuth ...
7
votes
3answers
708 views

Twitter refresh page via API

I'm using the Twitter API (via TweetSharp) and was wondering if it's possible to automatically refresh the page from the API so that all users see the update? If so, is it also possible to take it one ...
6
votes
10answers
2k views

Facebook Connect vs Twitter Anywhere vs OpenID for third-party login/registration system?

We want to streamline the user registration and login process. The goal is to reduce the time and effort for users to register and login to our site. At the same time, we don't want to overwhelm ...
5
votes
3answers
2k views

How to post from twitter using WP7 C#?

I've been looking for a solution to post to twitter from a wp7 app but have found very limited resources on the matter. Everything seems to be in either a different programming language (ex. PHP) or ...
5
votes
2answers
1k views

Twitter Streaming API .NET library

I am currently trying to write some code to consumer the user stream from the Twitter streaming API: http://dev.twitter.com/pages/user_streams I am struggling to connect to it using basic auth and ...
5
votes
3answers
1k views

python-twitter streaming api support/example

I was working with python-twitter and realized that twitter provides streaming api to consume tweets in realtime. I found one example that uses pyCurl here Have anyone tried or know how to use that ...
5
votes
4answers
1k views

OpenID and FB Connect Tutorial

Simple question really, I've been looking all over the Internet probably for the past few days for several hours a day looking for some solid information on OpenID and Facebook Connect integration on ...
5
votes
3answers
574 views

Database Schema for multiple authentications, Facebook Connect, Twitter, OpenID, etc

I am building an application that I want to interface with Facebook Connect, Twitter, OpenID, and potentially other social networks. Users will be able to login using any number of these methods at ...
5
votes
4answers
1k views

Creating a reply using PHP and the Twitter API

This is the PHP code im using in conjunction with jQuery .ajax to create a new Tweets: /* Create a TwitterOauth object with consumer/user tokens. */ $connection = new TwitterOAuth(CONSUMER_KEY, ...
5
votes
4answers
1k views

Twitter competition ~ saving tweets (PHP & MySQL)

I am creating an application to help our team manage a twitter competition. So far I've managed to interact with the API fine, and return a set of tweets that I need. I'm struggling to decide on the ...
5
votes
2answers
2k views

Utilizing Twitter's Streaming API w/ jQuery?

Twitter's Streaming API seems to provide a way to receive realtime tweets without constantly polling for new data. Would it be possible to make use of this API using jQuery (or maybe falling back to ...
5
votes
1answer
1k views

OAuth - Access Token expiration period?

Does anyone know what the expiration period of an OAuth Access Token is?
5
votes
2answers
439 views

Is Twitter implemeting OAuth off spec? (C#)

I've been battling with OAuth and Twitter for 2 weeks now trying to implement it. After many rewrites of my code I've finally got a library which performs the request as it should be based on the 1.0 ...
5
votes
1answer
7k 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
6answers
323 views

What are the pros/cons of the various Twitter API libraries?

It seems there are at least five Python libraries for the Twitter API. Can those who have used them comment on your experiences?
5
votes
5answers
1k views

How to deal with streaming data in PHP?

There is a family of methods (birddog, shadow, and follow)in the Twitter API that opens a (mostly) permanent connection and allows you to follow many users. I've run the sample connection code with ...
5
votes
4answers
3k views

Twitter REST change “from API” to something meaningful

When using simple request to post to Twitter the messages are signed with "sent from API". Is there a way to change that to the actual name of your application? Is it another post parameter or ...
4
votes
1answer
97 views

Find ALL tweets from a user (not just the first 3,200)

With https://dev.twitter.com/docs/api/1/get/statuses/user_timeline I can get 3,200 most recent tweets. However, certain sites like http://www.mytweet16.com/ seems to bypass the limit, and my browse ...
4
votes
3answers
134 views

Simple Twitter Streaming API Script

I would like to create a page that displays the latest tweet using a specific hash tag. I currently have one working, but it uses the Search API. Problem with that is that it's not really real time, ...
4
votes
2answers
339 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 ...
4
votes
3answers
316 views

How do I add an image to a tweet or how does twitter decide which image urls to render

If I post a tweet with a link to a picture it will only display the link. But if twitpic post an image link (or rather a link to a page with an image) twitter will render the image (smaller albeit). ...
4
votes
2answers
126 views

Twitter widget will not populate when display set to none

I am using Twitter's own Search Widget (Which can be seen here) on my site and it is contained in one of many switching tabs, basically consisting of divs that are hidden and shown according to which ...
4
votes
2answers
445 views

Twitter OAuth (PHP): Need good, basic example to get started

Using Facebook's PHP SDK, I was able to get Facebook login working pretty quickly on my website. They simply set a $user variable that can be accessed very easily. I've had no such luck trying to get ...
4
votes
3answers
561 views

How to get a list of all retweeters in Twitter?

I have seen numerous companies doing like Twitter lotteries where users got to retweet their tweet and then one of retweeters will get the prize or whatever. I was wondering now how do they get the ...
4
votes
5answers
465 views

Bypass Twitter OAuth

Essentially the same problem as this question but looking for a solution in Python. How to work around Twitter OAuth? Ideally, I dont want to have to go through the hoops of setting up a user/login ...
4
votes
2answers
167 views

find which of a user's tweets were favorited

If I understand correctly Twitter only lets you check which Tweets a user favorited, and not which of his tweets were favorited by other users. (e.g. http://api.twitter.com/1/favorites/aplusk.xml). ...
4
votes
3answers
457 views

Twitter and jQuery , render tweeted links

I am using jquery ajax to pull from the twitter api, i'm sure there's a easy way, but I can't find it on how to get the "tweet" to render any links that were tweeted to appear as a link. Right now ...
4
votes
1answer
372 views

Showing what Twitter followers are followed by friends in Python/Django

I'm building a quick part of my app that looks at a user's followers, and highlights which ones are followed by people the user follows (friends). I'm wondering two things: Is there a more ...
4
votes
5answers
276 views

Tweets exclusion

Let's pretend that I have a site where the users create topics and write threads on Fruit. To keep the users informed of all Fruit conversations on the entire web, I collect tweets related to the ...
4
votes
1answer
916 views

Twitter API - OOB Flow

I'm developing a mobile application that needs access to Twitter. There's a ton of documentation relating to using the Twitter API with web apps, but I'm having a hard time finding the correct flow or ...
4
votes
2answers
675 views

Java - Post to Twitter

I've written a simple web application, which I want to be able to post tweets. I have seen some java libraries for working with Twitter, but they all seem like too much of work for something that is ...
4
votes
3answers
925 views

Is there a function to convert a Twitter API created_at date into the correct format for ColdFusion 8+?

The Twitter API spits back dates (created_at) from api.twitter.com with JSON format in the following format: "Fri Dec 10 17:12:00 +0000 2010" (<-- notice the year is at the end) ColdFusion 9 ...
4
votes
2answers
619 views

is there a callback option with twitter's “follow button” widget

I'm using this for creating twitter follow buttons on my twitter web-app. Implementation is as easy as this: <span id="follow-twitterapi"></span> <script type="text/javascript"> ...
4
votes
2answers
826 views

urllib.request in Python 2.7

I can use urllib.request module with Python 3.1. But when I execute the same program using Python 2.7, an error comes along the lines of; AttributeError: 'module' object has no attribute 'request'. ...
4
votes
2answers
5k views

twitter4j.TwitterException: 401:Authentication credentials were missing or incorrect

I am developing web based application in Java [GWT] I am facing problem with TwitterException. I used valid credential. Twitter twitter = new Twitter(myTwitterId, myTwiterPwd); when I call ...
4
votes
1answer
1k views

Twitter OAuth - Storing Tokens in MySql

Im using the Twitter OAuth class to connect to Twitter found here: Currently the script just uses the tokens supplied but doesnt store them in a database, i'd like the script to do this. This is ...
4
votes
1answer
446 views

Zend_Http_Client - Read from Stream?

I want to access the new Twitter Stream API using Zend_Http_Client. The problem is, that the HTTP request to that web page (http://stream.twitter.com/1/statuses/sample.json) is never finished but ...
4
votes
3answers
540 views

Accessing the Twitter API via PHP

I'm working on making my script mesh with OAuth instead of Basic Auth, and I'm stuck. So far, I'm just working on authenticating at the moment, but I can't get that working. This code: <?php ...
4
votes
2answers
377 views

Authentication versus Google, Facebook, Twitter with community SDK

we're developing one service to be integrated with various social networks and would like to allow users to be authenticated with their facebook-google-twitter-etc accounts in a simple one-click way. ...
4
votes
1answer
2k views

Any way to get Twitter user email?

Is there any way to get Twitter user email from Twitter API? Facebook (FBQL) provides this data in the hashed form so that you can encrypt email and then compare to the hashed one.

1 2 3 4 5 32