Questions tagged [twitter-oauth]

Twitter implementation of oauth

Oauth - is an open protocol to allow secure API authorization in a simple and standard method from desktop and web applications.

See also:

2753 questions
9
votes
2 answers

Can email address not verified in oauth2?

I know not all providers give out user email address, but assuming if they use oauth2 and the email field is not empty, can I say that email address must be verified ?
Ryan
  • 10,041
  • 27
  • 91
  • 156
9
votes
10 answers

R TwitteR package authorization error

I am following the latest update on twitteR homepage, and I can't pass the authorization process. library(devtools) install_github("twitteR", username="geoffjentry") library(twitteR) api_key <- "XXXXXXXXXXXXXXXXX" api_secret <-…
Boxuan
  • 4,937
  • 6
  • 37
  • 73
9
votes
5 answers

Twitter 1.1 OAuth authenticity_token_error(99)

I use the following code to get the bearer token: $token = base64_encode($client_id.':'.$client_sec); $data = array ('grant_type' => 'client_credentials'); $data = http_build_query($data); $header = array( 'Authorization: Basic '.$token, …
Alexey Palamar
  • 1,440
  • 1
  • 10
  • 16
9
votes
1 answer

How do I specify the scope with Twitter OAuth?

With Twitter OAuth, the user gets the following: I only need to post tweets, is it possible to only ask for only that? Facebook supports a "scope" parameter when requesting authentication, but I don't see anything like that for Twitter: Twitter…
ThisGuy
  • 2,335
  • 1
  • 28
  • 34
9
votes
0 answers

Working example of using Twitter API on Android?

Could anyone suggest a working example of how Twitter API is implemented in Android. I would like to login and post on Twitter. After some research Twitter4j library for Java is probably the best choice, however, I still don't manage to get Twitter…
Mantas
  • 1,366
  • 3
  • 13
  • 18
9
votes
1 answer

RestSharp and Twitter API 1.1: How do I correctly URLEncode status update text?

I'm trying to post a Twitter status from my web app, using RestSharp. The following code works perfectly: var status = "I am fine with posting this status."; var client = new RestClient("https://api.twitter.com"); // The OAuth keys/tokens/secrets…
Mark Bell
  • 28,985
  • 26
  • 118
  • 145
9
votes
3 answers

Twitter App not taking localhost and 127.0.0.1 as CallbackUrl

I am developing an Application on my localhost environment. Where I want to implement Twitter OAuth functionality in PHP. So I just went on dev.twitter.com and was trying to create an app but its not allowing me to pass Callback URL as localhost or…
J.K.A.
  • 7,272
  • 25
  • 94
  • 163
9
votes
2 answers

OAuthWebSecurity "Remember me" for Twitter

Using DotNetOpenAuth on MVC4 C# for my application to get authentication for users from Facebook, Twitter, Google+ and yahoo. Currently all the providers other than twitter will allow existing users to just log in without asking for permission when…
8
votes
1 answer

Trying to get ResponseText from a GET request in Twitter

I'm trying to improve my knowledge of VBA, learning about GET, POST and stuff, because I've seen many examples, and can't get what I'm doing wrong. Probably is the Oauth part. The main problem is that I'm just an Excel guy. I'm not web developer, so…
8
votes
1 answer

How to tweet from Android app?

I am developing an Android application and would like to have the functionality to send message on my twitter account (TWEET). Which APIs are available for this? Code samples will be appreciated.
user718592
  • 101
  • 1
  • 1
  • 3
8
votes
4 answers

Integrating Twitter Api on ANDROID (using native api from twitter)

Recently the Twitter kit is going to lose the support and I'm wondering what's is the right and recomended way to integrate to show feed tweets from search (using the api native or some new alternative to twitter kit) now and futter. The most…
exequielc
  • 681
  • 1
  • 11
  • 32
8
votes
5 answers

Authenticate user with twitter login

I wonder of someone know a working sample of logging in using Twitter (OAuth) for .NET I'm currently using this one http://www.voiceoftech.com/swhitley/?p=681 but it only works if I set the callback url to "oob", if I set a real callback url I get…
StackOverflower
  • 5,463
  • 13
  • 58
  • 89
8
votes
5 answers

Twitter OAuth Login Page on the iPhone

I have Twitter integrated into my application, with the help of Sharekit. Everything works pretty well except, if the user happens to tap on the "Sign Up" link on the Login/allow page, it goes to a non-sign up error page. Either a "Sorry that page…
TheGeoff
  • 3,860
  • 2
  • 23
  • 23
8
votes
9 answers

How to make User logout from twitter fabric ios

I have made a basic app using Twitter's fabric that allows user to tweet within my app and Provide Login With Twitter.Every things works a I Wanted. How my app Works If the user doesn't logged in to twitter my app allows him to login and if he is…
Dalvik
  • 217
  • 1
  • 2
  • 12
8
votes
1 answer

Android Twitter login not working with Fabric SDK - Callback must not be null

I'm working on a feature that needs to access the public data of Twitter users through the Twitter REST API, and I'm using Twitter's Fabric SDK for logging into Twitter. Here is the code of my Activity: @Override protected void onCreate(Bundle…
Yash Sampat
  • 30,051
  • 12
  • 94
  • 120