Posts

Showing posts with the label twitter

c# - Listing Friends — Hitting auth failure mid-process

c# - Listing Friends — Hitting auth failure mid-process So, I'm trying to the friends of all of someone's followers. Not recursively digging, just that single level. I'm able to pull the followers just fine (and it looks like it can handle more than 75k followers, so I'm 90% sure I have the rate limits fine there). But my code to pull the friends is throwing authentication errors after it returns 15 of the followers friends. In other words, in this bit of code: for (var i = 0; i < followerList.Count; i++) { await followersFriends(followerList[i]); } I'm getting this error when i == 15 : i == 15 LinqToTwitter.TwitterQueryException HResult=0x80131500 Message={"request":"/1.1/friends/ids.json","error":"Not authorized."} - Please visit the LINQ to Twitter FAQ (at the HelpLink) for help on resolving this error. It does appear to completely get 15 lists, it's the 16th that throws it. I have the feeling that this is ...

Request failed: forbidden (403) after adding the provided url from Firebase in the callback settings of the Twitter app

Request failed: forbidden (403) after adding the provided url from Firebase in the callback settings of the Twitter app Adding this callback url in the settings, doesn't work with Firebase (doesn't show any user that signed up): [twitterkit-Consumer_ID://] Adding this callback url in the settings shows error "forbidden (403)": https://the-app-name.firebaseapp.com/__/auth/handler Everything in the info.plist was put correctly: consumer id, .... Everything in App Delegate was put correctly: Twitter.sharedInstance.start..., Twitter.sharedInstance.application... Help much appreciated By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

How can I make a twitter Bot in python using tweepy which tweets on a specific user tweet?

How can I make a twitter Bot in python using tweepy which tweets on a specific user tweet? message = " Truly agreed with you " for tweet in tweepy.Cursor(api.search, q='seo_regio', lang = 'en').items(1): try: print("Found tweet by:@" + tweet.user.screen_name) api.update_status(status = "Truly agreed with you #IndianPolitics", in_reply_to _status_id = tweet.id_str) print("responded to @" + tweet.user.screen_name) if tweet.user.following == False: tweet.user.follow() print("following @" + tweet.user.screen_name) please, indent your code correctly. It is actually unreadable. – JeffProd Jun 30 at 11:58 I'm sorry for my code but I'm a newbie can you tell me how to create a Twitter bot that replies a specifi...

Twitter profile image is tiny with Auth0 Universal login

Twitter profile image is tiny with Auth0 Universal login Im using Auth0's universal login with Facebook and Twitter. By default both of the social networks return tiny version of the user's profile image. With Facebook you can set a rule in Auth0 which returns the larger one, however I cant any way to do the same with Twitter (default is 48px). 1 Answer 1 I don't know if this is best practice or not but if you replace the string "A_normal" with "A_400x400" then you get an image 400px square: picture.replace('A_normal', 'A_400x400'); By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.