Most voted "twitter-api" questions
24 questions
Sort by count of
-
4
votes1
answer303
viewsCurl Friendships/create, bad Authentication data
Good with the help of the Inkeliz, made in this question, i got authentication with Twitter via form. Filing cabinet login.php: <?php require_once '../modules/config.php'; require_once…
-
3
votes0
answers93
viewshow to collect retweets and replys from a ruby user
I’m doing a job and in it I need to collect the number of retweets and replys of 10 tweets from a Twitter user. In the code it is already possible to collect the number of followers and following…
-
2
votes0
answers121
viewsFilter retweets using the twitter API
I’m making a search tool using the twitter API to receive tweets. However, I am having a problem related to retweets, every search I do, more than half of the results are retweets. Is there a way…
-
2
votes1
answer87
viewsProblem with urllib3 and Twitter API
Save Coderos on duty I’m using this source for twitter API https://github.com/geduldig/TwitterAPI When running the error examples: File "stream_tweets.py", line 1, in from Twitterapi import…
-
2
votes1
answer404
viewsHow to return PHP code with Javascript?
Topic edited completely My file Follow_Button.php: <?php require_once '.././app/autoload.php'; $TwitterUsers = new TwitterUsers; require_once '.././app/TwitterOAuthHelper.php'; $helper = new…
-
1
votes1
answer704
viewsDoubts about how Requirejs works
I am making an application that will consume some Twitter data. I am using the library recommended by API developers, as my application is only to consume API I use only Javascript and jQuery, so I…
-
1
votes1
answer120
viewsTwitter ( php ) - how to get a picture of the user and the email this user uses on the social network
I am not able to find in the documentation whether this data can be accessed or not. The documentation (in my opinion) is very superficial in relation to Facebook SDK documentation. I am using Oauth…
-
1
votes1
answer54
viewsTwitter User-App Authentication
I am developing some Python scripts with the intention to bring specific tweets and perform further analysis, but I have doubts about the type of Twitter authentication. As I noticed, there are two…
-
1
votes0
answers50
viewsHow can an inline style cause security problems?
Working with the Twitter API, I received the following message in the browser when trying to authenticate: Refused to apply inline style because it violates the following Content Security Policy…
-
1
votes1
answer78
viewsLogical help with PHP using Twitter API
Well, here’s the idea, I’m using API from Twitter to authenticate users, I am using the following feature: https://twitteroauth.com. I used this video to help me authenticate, it’s exactly the same:…
-
1
votes0
answers42
viewsIncomplete tweets in searchTwitter search method
Hello, community of Stackoverflow BR, I’m playing with the library twitteR of programming language R, and I realize that in the search that I have made, the texts are cut, example: "RT…
-
1
votes1
answer136
viewsTwitter API with CURL
OBS: THE COMPLETE CODE IS HERE, but I made this adjustment to receive the cookies I am trying to read the cookie files to make the necessary requests to stop get the result I hope, see my code:…
-
1
votes2
answers469
viewsHow to access content from a json file?
I have a JSON file of information extracted from Twitter through the library tweepy, a piece of file content is as follows: Status(extended_entities={'media': [{'source_user_id': 3383675067, 'url':…
-
0
votes1
answer72
viewsTwitter API user_timeline request error
I’m having a hard time finding any material that explains how I use the Twitter API for take the most recent publications of a particular user and display them on my website. According to the…
-
0
votes1
answer77
viewsError while using Sttwitter and Swifter
I am trying to use one of the two libraries Sttwitter or Swifter in my project but always error. In the case of Sttwitter the error is in the method call getUserTimelineWithScreenName:(NSString…
-
0
votes3
answers207
viewsQuestion about Twitter API
In the documentation it says the following: Tokens are passwords Keep in Mind that the Consumer key & secret, bearer token credentials, and the bearer token itself Grant access to make requests…
-
0
votes1
answer120
viewsFind a certain word in a particular Tweepy user
Following the documentation, I was able to create a code that extracts tweets by tag, and another that extracts tweets from some user. But I’m having trouble extracting tweets from someone by tag.…
-
0
votes1
answer36
viewsDoubt Function / Callback Golang
Do I necessarily need to deal with Sponse for the function to be executed? As it stands it says that the variable "tweet" was declared but not used, but as it is a POST request, I see no point in…
-
0
votes1
answer108
viewsusing twitter api with golang
I am trying to make this request "oauth/request_token" on twitter using go. // GET PARAMS TO REQUEST t := time.Now().Format("20060102150405") values := make(url.Values) values.Add("oauth_nonce",…
-
0
votes1
answer263
viewsHow do I get information for Twitter accounts?
Yesterday I did this question here in the Sopt, I am now following what the Inkeliz Said: Cookies will only be obtained if you make the request using login/password. To do this just enter the…
-
0
votes1
answer419
viewsCurl returning null value in JSON with PHP
Well I’m studying cURL, because I want to make an application with Twitter using login form and password... yesterday I did this question and was very well answered, based on this I am studying…
-
0
votes0
answers38
viewsReply to tweets from a specific user with Tweepy
Using the library Tweepy, I’m trying to make a bot that reply in all tweets of only one specific user, the problem is that the bot is giving reply not only in the tweet but in everyone that retweet…
-
-2
votes1
answer32
viewsMultiline string problem for twitter API in Dart
I’m creating a bot that tweets on Dart. I’m having problems because I want to post with line break but I can’t, the following error appears when I try to convert a string into json through the…
-
-2
votes1
answer35
viewsTwitter API returning "Status is a Duplicate"
I’m creating a bot on Twitter to respond every time it’s mentioned with random text. It’s working fine, but the problem is that the API returns the "Status is a Duplicate". This is the part that…