The Application Programming Interface (API) for twitter.com

learn more… | top users | synonyms (1)

0
votes
1answer
13 views

view tweets in share button for twitter?

I have implemented twitter share button , for sharing is working fine, it is posting. But when I click for view all tweet, then its not showing in twitter page how many person tweet my page. can ...
1
vote
0answers
20 views

Creating a persistant connection to twitter stream API using R

I am presently using the streamR package in R to stream tweets from the filter stream in twitter. I have a handshaken ROAuth object that I use for this. My piece of code looks like: # load the ...
0
votes
1answer
16 views

Twitter API: Url search for Username

I have a list of websites where I want to see if they have twitter accounts. I was curious if there is a url search for username in the API, or something of this nature. I've been reading and looking ...
0
votes
1answer
26 views

Android Twitter is not properly working ..send,logout button not showing after login

Firstly i having errors regarding login..i resolved that issue..but currently i am facing some issues after login button clicked here is the code i am using after clicking login button i see this ...
0
votes
0answers
5 views

searchTwitter in R does not work (OAuth required)

when using library(twitteR) BBC <- searchTwitter("BBC", n=100) error in twInterfaceObj$doAPICall(cmd, params, "GET", ...) : OAuth authentication is required with Twitter's API v1.1 What does ...
0
votes
1answer
18 views

How to find what serial number a user has in Twitter

I would like to follow certain users just to monitor their tweets in my program, but I don't know where to find the serial numbers that identify Twitter users. I have follow_list = [] ...
0
votes
2answers
19 views

How to Parse Month and Year from Twitter API returned JSON

Suppose Twitter returns Wed Sep 14 18:52:57 +0000 2011in JSON format. How do i go about parsing it so that the display looks something like Sep 2011. Im aware of DateFormatter. I tried the following ...
0
votes
0answers
14 views

error code 403 while upload image file on twitter php

I want to post status message on twitter with media(image). I found so many question-answer in google but I donot get exact solution example links : On github On Stackoverflow my code : require ...
0
votes
0answers
13 views

Remove rights in Twitter authorize page

I'm using twitter oauth verification api in my website. My question is how to remove the rights from the twitter authorize page. (please see linked screenshot) Is there any way to remove that? ...
0
votes
0answers
6 views

Creating a per-URL Twitter Widget

Is it possible to embed Twitter timelines that only show tweets for a particular URL without manually creating a widget for each one(which in my case would be impractical). I am trying to implement ...
1
vote
1answer
28 views

Twitter Integration API is not working

First i have downloaded twitter4j-3.0.3 and put its .jar files into libs folder of my eclipse app.After that i create an app on https://dev.twitter.com/ and get all the credentials needed and gave ...
-1
votes
2answers
38 views

big data - where does the data come from? [closed]

This might seem like an inane question but with all the buzz about big data I was curious as to how the typical datasets used in big data are sourced? Twitter keywords seem to be a common source - but ...
0
votes
1answer
28 views

Display user profile image with Twitter API - jQuery

I am using the Twitter API with jQuery to display a Twitter stream on my website. I would like to display the profile image, the tweet text and the time. I have everything working except for the ...
0
votes
0answers
13 views

How can I validate this Twitter Code?

The following code is generated for twitter feed: <script ...
0
votes
0answers
3 views

Twitter pull images from your user in grid

I have been trying to find a way to pull twitter user images that are following me into a grid as like a mosaic kind of thing I found this wordpress plugin that does it but I want to hardcode it on my ...
0
votes
1answer
9 views

Twitter Button Not Returning Additional Times

I have a very custom drupal site that I am working on and I have come across this problem that whenever the overlay is triggered with the twitter button nested in it, the first time it works but any ...
0
votes
1answer
28 views

Linq to Twitter status update c#

This is my code For some reason i am unable to update the status i am getting this error . Your credentials do not allow access to this resource at var tweet = twitterCtx.UpdateStatus("Hello ...
0
votes
2answers
25 views

android - Issues in twitter integration using twitter4j

I am newbie to twitter integration in android. I integrated twitter in android app using this tutorial. Here i faced some problems. My App is only executed from ICS if i removed the targetversion ...
0
votes
2answers
38 views

C# Send tweets on twitter from multiple accounts

Well i am workin on a c# application and i want to be able to send tweets to multiple twitter accounts . I wanted to know is it possible ? Edit : Sorry for not being specific :D How can it be done ? ...
1
vote
1answer
28 views

How to add twitter capability to my struts2 application

I developed struts2 web application, now I want people to login from their twitter account, so I need to place a button called "Login with Twitter" under my normal login button. I already did Facebook ...
1
vote
2answers
38 views

Accessing Twitter Streaming API without an application

I am writing a Twitter program for a little market sentiment project I'm doing for fun in Pyhon using the Tweepy library. However, my limited knowledge of API access and whatnot is making most of the ...
0
votes
1answer
28 views

Refactoring 3 functions [closed]

I am refactoring a simple Twitter application I wrote when I noticed what appeared to be three (3) major code smells in the form of the following three functions: private function ...
-2
votes
1answer
25 views

Login with twitter button in my struts2 application [closed]

I developed struts2 web application, now I want people to login from their twitter account, so I need to place a button called "Login with Twitter" under my normal login button. I already did Facebook ...
1
vote
1answer
16 views

Twitter relationship visualization in ROR [closed]

I want to display friend follower relationship in D3 but when there is more friend associated to any particular user a error appears "Rate limit exceeded"
0
votes
0answers
9 views

Complete change log for Twitter's APIs

Twitter does not seem to provide a change log covering all historical changes to its APIs. Do you know if such a log is provided by Twitter or someone else? I would like to know what API endpoints, ...
0
votes
1answer
11 views

Twitter OAuth - Get values from Array

I'm attempting to get a list of users who searched a term on Twitter and so far no luck. Here's my code: $parameters = array('q' => '#puppy', 'count' => 2); $results = ...
0
votes
1answer
33 views

PHP curl json for twitter not working

This code is not working: $ch = curl_init ("https://api.twitter.com/1/statuses/user_timeline/ijustine.json?callback=twitterCallback2&count=4"); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, true); ...
0
votes
2answers
13 views

How do I get only the new tweets per request using Twitter API?

I'm trying to get new tweets containing some hashtag from Twitter API. The thing I'm interested in is the number of new tweets each time I request the results. So like this: 10:20 AM: 100 tweets ...
0
votes
1answer
20 views

How can I dynamically change the Twitter Profile and Search?

I can display two Twitter boxes next to each other like this, using the Web Helpers package in a Razor 2 asp.net website. <div id="dynaMashTab-Twitter" > <span id="spanProfile" ...
1
vote
0answers
23 views

Trying to get Twitter trend list on Android

I am trying to get the first item of the current trending list on Twitter. I have created some code, but it is returning an empty list. I would like to know where I'm going wrong, I'm quite new to ...
0
votes
0answers
14 views

Tweet to other users using api

I want to tweet a particular person using @username method. I can able to tweet in my own wall. But i don't know How to tweet in other person wall using api.
1
vote
1answer
39 views

filtering of tweets received from statuses/filter (streaming API)

I have N different keywords that i am tracking (for sake of simplicity, let N=3). So in GET statuses/filter, I will give 3 keywords in the "track" argument. Now the tweets that i will be receiving ...
0
votes
0answers
25 views

Twitter API 1.1 Search Tweet

Hello, I am using the following code <?php $token = get_option('twitter_oauth_token'); $token_secret = get_option('twitter_oauth_token_secret'); $consumer_key = ...
1
vote
0answers
38 views

Ruby Twitter Gem, rate limit exceeded

I am trying to use the ruby gem Twitter (https://github.com/sferik/twitter) to fetch the followers of a user from twitter api. As per the documentation ...
1
vote
2answers
44 views

How do I get RegEx to get the entire URL… start at http and get everything after until a whitespace and how to exclude certain characters

OK, I have an asp file pulling an rss feed from twitter onto my server, Im using AJAX to break up each entry and write the HTML. I want to be able to extract a link from the description part of the ...
0
votes
0answers
17 views

Twitter4J updating status “really weird”

I am pretty new to Twitter4j, and I am trying to update my status through it. However when I run the program, it updates my status to "Really Weird"! Here's the code: (I don't own it, btw) package ...
0
votes
1answer
38 views

Get twitter trends by woeid using tmhoauth

I am using tmhoauth library to build a small twitter app demo. Everything works fine like retrieving tweets, making searches etc. But when I try to retrieve trending topics using woeid, I get a 404 - ...
0
votes
0answers
10 views

Easiest way to post a Tweet with an attached image

Not being a Twitter expert, I'm looking for some confirmation from someone who knows the platform better than me! Basically, my need would be to post a Tweet from a website, just like the Web Intents ...
-8
votes
0answers
30 views

Function that returns true if twitter account passed is a valid twitter account? [closed]

I need a function that returns true if twitter account passed is a valid twitter account? c#
0
votes
0answers
36 views

How to authenticate and GET search tweet using Twitter API 1.1?

Twitter has implemented Authentication in their API version 1.1. Now how can i search tweets using a keyword with Authentication in Java ? I tried to use the code given Here to authenticate. But i am ...
-2
votes
0answers
33 views

Big Data API's Programming [closed]

What kind of API's do you use for big data analytic purpose? Can you please send me documentation and also videos or tutorials as to how to work with those API's? Thanks!
0
votes
2answers
15 views

Python CGI script returning inconsistent results

So I have a Python CGI script running on my apache server. Basically, from a webpage, the user enters a word into a form, and that word is passed to the script. The word is then used to query the ...
0
votes
0answers
14 views

Twitter: Counting the numbers of characters of each tweet on your account?

The idea is to detect every tweet on my account and display the "numbers of characters" of each tweet. Any ideas how to do this? Thanks!
2
votes
2answers
17 views

What is wrong here? Twitter timeline in bottom corner?

I'm currently building a website but the twitter timeline (widget) it sat in the bottom right hand corner. (Just a heads up, This is my first website and not the best at coding). I just want it to ...
0
votes
0answers
19 views

Issue in getting the Time of creation of a tweet

I'm using Tweetsharp library to display the latest 5 tweets posted by a user. I've created an app at dev/twitter and got the required tokens. I want to show the time lapsed since the tweet was posted. ...
0
votes
1answer
30 views

file_get_contents() 'failed to open stream' error retrieving tweets

I am trying to create a simple script that will retrieve the last 5 feeds for a twitter user (in this instance the BBC) It runs okay locally on my development server but once I upload this to a live ...
1
vote
0answers
31 views

how to share a url with # in twitter using tweet_button.html

i have a twitter img with onclick function tweetpage <img src="images/twtr.png" onclick="tweetPage();"/> function tweetPage() { var url = ...
0
votes
0answers
33 views

Ruby: Twitter get_access_token always returns 401 unauthorized

I am trying to use 3-legged authentication to get user's access token. This is just a prototype, so it is not implemented with session yet to save some returned data of API. Please read through the ...
0
votes
0answers
11 views

response code 0 from tmhOAuth: blocked by reverse proxy?

I am using the WP plucgin Twitget, to display my twitter feed here: http://nosmokes.com.au/. I am using this plugin with no problems on my local dev site. My production server is running PHP 5.3.3 ...
2
votes
1answer
35 views

HTML5 Symantic advice needed

I'm writing a Twitter application that will display the following three (3) things about a Twitter user: GET statuses/user_timeline GET friends/ids GET followers/ids My question is, is it ...

1 2 3 4 5 66