Tweets are text-based posts of up to 140 characters, managed via the Twitter online social networking and microblogging service.
0
votes
0answers
7 views
Get user's latest tweet user_timeline.json getting invalid json?
Am trying to get users latest tweet using Oauth user timeline.json, with curl am getting following json as output.
Array(
[headers] => Array
(
[cache_control] => no-cache, ...
0
votes
3answers
268 views
Loading twitter tweets 410 error
I'm having problems loading tweets. I want to load the tweets for ex. from "BachelorGDM".
(https://twitter.com/BachelorGDM)
This is what I do in my javascript file:
var url = ...
0
votes
0answers
14 views
Twitter — Tracking single user's tweet using API
I am having a hard time solving this dilemma, and I have a feeling that it's been done a million times, I just cannot find any documentation on it. What I am trying to do:
I have a button on my site ...
1
vote
1answer
64 views
+50
Twitter button: wrong count (too many)
I am using this TWEET BUTTON code in my web (inserted from GWT):
<a href=\"https://twitter.com/share\" class=\"twitter-share-button\"
data-url=\"http://www.example.com/#!v;id="+diagramId+"\"
...
0
votes
0answers
7 views
Tweet button creates faulty link
I have a website with tweet buttons which have worked in past but for some reason they are now coming up with bad links or links which only produce an error message.
For instance on this page ...
-1
votes
1answer
46 views
How to open links of a tweet in a new tab / new window?
Dear stackoverflowers,
I am displaying the latest tweet on my website. However, when I have a tweet that contains a link, it opens the link the same window.
My best guess would be to add the ...
0
votes
0answers
25 views
trigger tweet anchor click on dropdown onchange
I have to trigger a click event on twitter's tweet anchor tag, onchange of dropdown.
I assigned id to anchor tag and trying to trigger click on this id.
Here is dropdown
<select id="1" ...
-1
votes
0answers
24 views
Historical Twitter Data [closed]
Anyone aware of any subscription free sources where I can obtain a list of historical tweets? I'm trying to get hold of a list of trending and none-trending tweets (within same timeframe) for ...
0
votes
2answers
61 views
extract tweets from a text file (python)
Sorry, I am just trying to store 'id_str' from each tweet to a new list called ids[]..
but getting the following error:
Traceback (most recent call last):
File "extract_tweet.py", line 17, in
...
1
vote
1answer
90 views
How to use the twitter4j lib to get the tweets of screen name?
I have seen a lot of tutorials for using this lib but i dint get a clear idea of it.
Firstly how can i authenticate the twitter app??,
is there any way i can hardcode the access token, so that the ...
0
votes
1answer
182 views
parse the place field in Twitter Tweets in Python
I am trying to parse the place field in Twitter Tweets. See https://dev.twitter.com/docs/platform-objects/tweets
In particular I want to extract the country code from country_code, and the state from ...
0
votes
0answers
148 views
How to get latest tweet id, using python-twitter search API
I'm trying to find a way to NOT get the same tweets using search API.
That's what I'm doing:
make a request to the Twitter
Store Tweets
make another request to the Twitter
Store Tweets,
Compare ...
0
votes
1answer
40 views
How to show all tweeted data in XML file through twitter api?
When I've typed in browser address bar "https://api.twitter.com/1/users/show.xml?id=Valid_Twitter_USER_ID" then it will show a last tweeted xml data of my account. It's
perfect for me, but I want to ...
1
vote
2answers
209 views
Get latest tweets through twitter search not working?
I'm using the following code to get the latest tweets from a specific hashtag
$(document).ready(function(){
getLatestTweets();
function getLatestTweets(){
var url = ...
2
votes
1answer
195 views
How to make a user tweet into his/her twitter account from java web application
Hello I want to build an java web application in which I want the user to tweet on his account from my java application.
Now when we are considering twitter4J the code which is it shows is using our ...