Tagged Questions
0
votes
0answers
33 views
How to validate oAuth token received in the redirect from the server?
I would like to allow users to login to my site with oAuth (facebook/twitter) but I'm having trouble understanding how the security model works if I authenticate them client-side.
When the users ...
0
votes
1answer
65 views
How to obtain Twitter access token and secret on iOs?
What I've got:
1. RoR back end
2. iOs 6 app
3. Twitter ConsumerKey and ConsumerSecret that back end uses
What I whant:
Add a Twitter sign in button to my iOs app that would allow me to authorize ...
0
votes
0answers
42 views
How redirection works by specifying the Redirection URL in APIs that implements OAuth?
Well I am very new to the API world...
I need to find out that how the logic of redirection is implemented in API methods that implements OAuth to get the Access Token. What they simply do is that ...
0
votes
1answer
27 views
Store the oauth access_token or ask a new one each 'session'
I'm playing around with the api of a service that supports oauth. I managed to retrieve the access_token from the service and I'm now able to call the various endpoints of the api. So far so good.
...
0
votes
0answers
95 views
Rails Facebook oauth by token
I'm trying to create before_filter method in OmniauthCallbacksController which could create a hashie object similar to request.env["omniauth.auth"] by it's structure. The reason to do this is to make ...
0
votes
2answers
61 views
GTMOauth2 iOS refresh token
i start a demo app from this exemple
https://github.com/Christian-Hansen/simple-oauth2
I can authenticate ti google and get back the AUTH object.
If i NSLog the auth object i can see access_token, ...
0
votes
1answer
49 views
How to unauthorize/revoke LinkedIn token in my application
I have a grails application in which I want a user to grant me access to his/her LinkedIn account to get information and show it in different ways.
I was able to do the following:
Get the ...
0
votes
0answers
22 views
Using oauthToken.Token
There's this kinda 'tutorial' and when i call the GenerateSignature method, there should be 2 variables passed, but i never used them before, they are not even in context and does not exist in the ...
0
votes
0answers
154 views
Want to get an access_token from Twitter Oauth api using oauth.js plugin
I am trying to get a Twitter access token from their oauth api. The plugin I am using is this https://code.google.com/p/oauth/source/browse/#svn%2Fcode%2Fjavascript. So far I only get "401 failed to ...
1
vote
1answer
166 views
Pocket API Access Token Request
I'm trying to get an Access Token from Pockets API
I'm able to succesfully get a Request Token, but when I try to use that to get the Access Token, it fails with a 400 bad request error.
Here's the ...
1
vote
0answers
301 views
oAuth 2.0 Google API asp.net Requesting Token
i have a problem getting token from google api, first i make this request to get code from google
accounts.google.com/o/oauth2/auth?scope=www.googleapis.com/auth/userinfo.profile ...
0
votes
0answers
27 views
Application token and graph search
I'm building an application that uses the Graph search API to fetch "public" information about users. For a given email address I'm just interested in a profile picture, display name, and link to ...
0
votes
0answers
116 views
google calendar get public calendar
I'm using google-calendar-api-v3 to develop ipad app.
I can get all the events by url:
www.googleapis.com/calendar/v3/users/me/calendarList?key={my google api key}";
and
...
0
votes
1answer
220 views
Guidance on retaining OAuth access tokens
I'm currently working with the DevDefined OAuth. As far as I have been able to tel, the access tokens are never removed from the out of the box in-memory store so the only time they would be cleaned ...
0
votes
0answers
127 views
OAuth 2.0 and SAML - fine grained authorization
In an OAuth 2.0 setting, suppose that, besides OAuth authorization (optionally using OAuth scopes), you want the resource server to use SAML assertions to implement fine-grained authorization checks, ...
0
votes
1answer
327 views
C# attempt to retrieve yahoo oauth request token results in 401
I can't see what I'm doing wrong, but that's probably because it's my first tango with oauth and I'm sure I'm newb-ing it up somewhere. I'm currently using the oauth library hosted by google code and ...
0
votes
0answers
195 views
How to use DropboxAPI (in Java) to get user login if i have got accessToken?
i use code below to get one user1's UID and accessToken, but i don't know how to use them to get user1 login without reauthorized. And if i want users to download files that uploaded by other users ...
0
votes
0answers
43 views
Facebook Token Expiry
I am currently working on uploading my photos to facebook. The problem I face is that the token expires every hour or so. I made a timer to refresh my token but this seems too impractical for me. Is ...
3
votes
1answer
122 views
Getting dropbox access_token works on windows but not on windows phone
I have a strange problem when requesting access_token from dropbox.
The same code works perfectly on windows. I get request token, open web page and then get access token.
On windows phone the same ...
0
votes
0answers
150 views
OAuth2 GitHub API token
I have a Client ID and Client Secret after having set up an application in github, I'm not sure what the URL or the callback URL is meant to be for that...which i think is causing me problems
I also ...
0
votes
0answers
189 views
How To save oauth token of tumblr API to login automatically?
I am making a tumblr Application and need to make it auto login from my users' accounts and get their tumblr data.
How can i do it ?
Can I save the oauth_verifier and oauth_token in database and run ...
2
votes
0answers
144 views
GData and OAuth in Python: Unable to convert request token to access token
I am trying to implement a button on a web-based dashboard that allows a user to export the current data to a Google Spreadsheet using OAuth and GData API. Currently, I can get the user to a ...
0
votes
1answer
951 views
How to validate google oauth2 token from java code
I have an android application and web-server working together. Now I want user log in via google from android application (or use one of the google accounts on android). Then andriod application ...
1
vote
1answer
135 views
What is a Facebook/Twitter OAuth token internally?
Ok, I really know what is it. I work with Facebook/Twitter API long ago. And it works, there is no bugs, sorry :). However, the following thing haunts me.
What is a token from OAuth provider side? I ...
0
votes
1answer
356 views
Could I get Linkedin oauth access token without explicitly user approve?
I'm working on a web app in Java that wants to read the app's user's Linkedin profile. Linkedin API uses oAuth and requires a process of getting the verification code via a request URL, also with a ...
0
votes
3answers
933 views
C# Dropbox OAuth access token key and secret not working (DropNet)
I'm using DropNet for Dropbox OAuth but I have one major problem - I can't store access token key and secret cause there is no point storing them. The storing mechanism is not a problem and not a key ...
0
votes
1answer
238 views
How to authenticate external web app to post to facebook app's page?
Has anyone been able to figure out how to authenticate an external web site to post to a facebook app's page (wall)?
We have an external rails site, and all I'm looking to do is post to our facebook ...
0
votes
3answers
670 views
How can I use Google's OpenID and/or OAuth services to login and allow access to APIs with only ever one prompt to the user?
I am attempting to create a login system for my website that permits both authentication via Google's API and access to any of the OAuth-supported Google Data APIs while ideally only showing the user ...
2
votes
1answer
2k views
Python Oauth2 - login with Google
I have been searching for 2 days for an answer, but nothing came up.
I am trying to make integrate Oauth2 for login with Google on Django. The code I have throws an exception - "The token is ...
3
votes
1answer
2k views
how to securely store access token and secret in android?
i am going to use oauth to fetch mails and contacts from google. I don't want to each time ask the user to log in to obtain an accesstoken and secret. From what i understood, i need to store them with ...
1
vote
0answers
266 views
use android accoutmanager.getAuthToken to fetch accessToken and accessSecret for gmail?
is it possible to use accoutmanager.getAuthToken to fetch accessToken and accessSecret for gmail? I want to avoid doing the oauth dance and leverage on accoutmanager instead....
all codes i have seen ...
0
votes
1answer
486 views
GitHub, creating new repository (Github API token)
I have written python scripts to list repositories and commits.
To create a new repository, I have used the following code:
curl -F 'login=SolomonPeter26' -F 'token=mygithubapitoken' ...
1
vote
5answers
3k views
How to call https://www.googleapis.com/plus/v1/people/me at google
I am developing an Android application and need to get the "me" info from google but I always ends up in either response code 401 or 403. What am I doing wrong?
Here is my code:
private static final ...
1
vote
1answer
1k views
Facebook code parameter for OAuth authentication
I build a FB app which does the following:
1) redirect initial request to FB, in order to authenticate/login, as follows:
...
0
votes
1answer
820 views
Django User Model Oauth
I'm slightly new to Django, and I've never had a fun time doing user management in web dev. Is there a nice, basic example/tutorial on authentication the Django User model with Oauth such as Twitter? ...
2
votes
1answer
1k views
Facebook, Oauth, PHP and storing access_tokens in MySQL
I've started to hack around a function to pull in FB data via my site using PHP, but could do with some help about the re-authentication stages.
So far I have it so that a visitor can authenticate ...
0
votes
1answer
647 views
Rest web service with security
I have wrote an web service that returns the scheduler from a given student. I must now secure the web service, because the data are confidential.
It's a rest web service using jersey.
My idea is to ...
2
votes
2answers
1k views
Tumblr API Blog methods return 401 “Not Authorized”, but User methods works perfect
So, there is a code that uses xAuth authentication to call tumblr API methods:
import urllib
import urlparse
import oauth2 as oauth
consumer_key = "..."
consumer_secret = "..."
consumer = ...
1
vote
1answer
2k views
OAuthException / An active access token must be used to query information about the current user
When trying:
facebook requestWithGraphPath:@"me/friends"
In my iOS app I get the error
"OAuthException / An active access token must be used to query information about the current user"
I can ...
0
votes
1answer
112 views
Client OAuth implementation on devices with no permanent storage
I'm implementing an OAuth consumer, which will run on various set-top-boxes. Some of them don't provide any means of storing user data permanently. When the STB is switched off, all data is lost ...
-1
votes
1answer
477 views
Is a Facebook JavaScript OAuth access token valid for Graph API?
I've a question about access tokens. How many different access token exists?
Is the old OAuth still supported? Can I use the access token retrieved from OAuth JavaScript login for calling new Graph ...
3
votes
1answer
2k views
OAuth Request and Access Tokens
I want to implement oauth 1 in my website and I was just wondering if
I have to change the request token once it was exchange to an access token?
Thanks in advance
1
vote
1answer
951 views
OAuth security issues on an Android mobile phone?
I am writing a client application that will run on Android phones that will interact with an OAuth server on the user's behalf. I have the OAuth server side code running on my web server for ...
0
votes
2answers
161 views
How to make a well-formed request token?
I am creating an OAuth login for my web app, and I am looking for the most air-tight and efficient way to create / store a request_token. As I understand, it will need to:
be totally unique
be time ...
2
votes
2answers
2k views
Best data length for storing OAuth tokens
I want to write a mysql database schema for storing OAuth access tokens which is sufficiently generic so that it is capable for supporting any provider that complies with the OAuth standard.
What ...
0
votes
1answer
102 views
X_VERIFY_CREDENTIALS_AUTHORIZATION - where can i get those values?
A curl HEADER should contain the following:
oauth_consumer_key="YOUR KEY HERE",
oauth_signature_method="HMAC-SHA1",
oauth_token="YOUR TOKEN HERE",
oauth_timestamp="TIMESTAMP",
...
6
votes
1answer
6k views
Twitter oauth Request Token Response code 401
I am working on a twitter oauth login. However, when I do the request_token, the very first step, the response code always return 401 Unauthorized.
I have searched a lot for a week, but I cannot ...
12
votes
4answers
1k views
Why is OAuth designed to have request token and access token?
In the OAuth protocol, a service consumer will ask a user to authorize a request token in the service provider domain, then exchanges the request token for a access token from the service provider.
...
1
vote
1answer
836 views
Problem with Zend Oauth and writing Access Token in mySQL database
I use Zend Oauth to connect my app to Twitter as described here:
http://framework.zend.com/manual/en/zend.oauth.introduction.html
It works perfectly saving the Twitter Request Token and the Twitter
...
0
votes
1answer
1k views
Facebook Connect API issue with authentication token
I have implemented the following code below according to the documentation and can get it to connect and display user id...
<?php
define('FACEBOOK_APP_ID', '87939462878');
...
