New answers tagged oauth-2.0
1
In the past I have used TweetSharp that uses Twitter's 1.1 API. You'd probably be better using that for your twitter calls.
TweetSharp Github: https://github.com/danielcrenna/tweetsharp
If you require an example or what you need, let me know.
0
I think you are looking at the old documentation for the reporting API.
For the brand new reports API (https://developers.google.com/admin-sdk/reports/v1/guides/authorizing), it is encouraged to use OAuth 2.0.
Notice that the older API is called reporting API, but the new API that was just released at the IO is called reports API.
0
The short answer is, you cannot do without a redirect uri.
This is how OAuth works. You need at least a uri to receive the access token. The uri could be hosted on localhost using a simple web server though.
0
What you want to do is to have the suppliers authorize with OAuth2 and store their access_token and more importantly refresh_token. The buyers do not need to authorize with Google at all, you can simply send their print job to the suppliers printer with the appropriate suppliers access token. This also makes it easier to handle the access to the different ...
0
As expected it was an understanding issue where we were using a local strategy instead of the ClientPasswordStrategy with the user validation happening within the password exchange before issuing a token.
We are now using the ClientPasswordStrategy and within the exchange.password function we are calling and internal call to our user api to validate the ...
0
Talking of OAuth 2.0 and not stackexchange API's specifically, there is an element of risk in the implicit flow, also called the implicit grant flow. This is because the authorization server sends the access token to your user agent/web browser.
To minimize any damage that could result from this, the access tokens were made short lived. Also, an access ...
0
It's unclear why/when this ever results in a 200; it should not. As mentioned in Function User.getUserId() in Cloud endpoint api returns null for a user object that is not null, this is a known issue.
TLDR;
The user_id will never be populated in the result returned from endpoints.get_current_user(). A workaround exists: by storing the user object in the ...
0
No need in the end to define my own flow, this is simply the Resource Owner Password Grant where we exchanged the credentials of the user for a oAuth Token for trusted clients.
0
You could try adding approval_prompt=force in your HTTP request that you make while looking for access tokens. This parameter ensures that the user has to log in/provide credentials every time the app is run.
Quoting from Google's documentation.
"If the value is force, then the user sees a consent page even if they
have previously given consent to ...
0
I see a bunch of mistakes in your code, which tell me that you haven't really done your homework on OAuth. The definition of the grant_type field in the OAuth2.0 specification is :: `
As defined in the OAuth 2.0 specification, this field must contain a
value of authorization_code.
So, this changes the flow a bit. Your app basically needs to request ...
0
Looking at the code, the @util.positional(1) annotation is throwing the warning. Avoid it using named parameters.
Instead of:
response = request.execute(auth_http)
Do:
response = request.execute(http=auth_http)
https://code.google.com/p/google-api-python-client/source/browse/apiclient/http.py#637
0
PHP has a PECL client: http://www.php.net/manual/en/book.oauth.php
Nice intro on oauth2: http://www.slideshare.net/aaronpk/an-introduction-to-oauth-2
This site oauth2.net/2/ list out 3 oauth server in different stages of development.
Big providers (Facebook, Google, Yahoo, Twitter, etc) implements their own flavour of Oauth, and moreover Oauth 2.0 is ...
0
When following the code example at https://developers.google.com/+/mobile/android/sign-in, I got "Empty consent data" as well.
But calling setScopes() on the PlusClient instance seemed to solve the problem:
mPlusClient = new PlusClient.Builder(this, this, this)
.setVisibleActivities("http://schemas.google.com/AddActivity")
...
1
I am in the same boat as you. The info you find on this is scarce and confusing... unfortunately.
You've probably already been to Google's API Documentation. This post helped me to get the GDataObjC-Client to work in my project.
Google's samples are unfortunately all for Mac and not iOS. Their take on it is, that the methods are pretty much the same for ...
0
According to java.lang.NoSuchMethodError you trying to call a method that is available in Compiletime classpath and isn't available anymore in Runtime classpath check this answer
So, No such error for method (actually you should post the full error here) this method isn't not supported anymore in runtime so all you have to do is to search this method and ...
0
I modified hmac.py, convert key to str object if it's unicode before tranlate called, and it works.
# hmac.py
...
71 key = key + chr(0) * (blocksize - len(key))
72 if type(key) == unicode:
73 key = key.encode()
74 self.outer.update(key.translate(trans_5C))
...
1
I just figured out how to get the refresh token, I'll tell you what I did just in case someone ever runs into the same problem...
String authorizationUrl = new GoogleAuthorizationRequestUrl(
OAuth2ClientCredentials.CLIENT_ID,
OAuth2ClientCredentials.REDIRECT_URI,
OAuth2ClientCredentials.SCOPE).build();
...
3
Try simple_oauth2: https://github.com/virtan/simple_oauth2
Simple OAuth2 client library. No dependency on http framework, preconfigured to authorize users of Google, Facebook, Yandex, Vkontakte.
MIT license.
1
This is now possible: https://developers.google.com/+/mobile/android/sign-in#server-side_access_for_your_app
You request a one-time authorisation code, send it to your server and your server exchanges it for an access token and refresh token.
1
There's a live example of how to implement Facebook Login via the Temboo SDK here. The source code for that example is available on GitHub (in PHP) but you can easily generate the Ruby code you need to achieve the same behavior via the Temboo website, see link below:
https://www.temboo.com/library/Library/Facebook/OAuth/
(Full disclosure: I work at ...
0
Solved this problem. i was assigning some different value to "expiration" that is require in content.
now it works with
long currenttime = System.currentTimeMillis();
long now = currenttime / 1000;
long expiration = currenttime / 1000 + 3600;
and with following
String temp = JWTBase64Header + "." + JWTBase64Content;
byte[] JWTSignatureInput = ...
1
For offline access, you need to exchange your short-lived access token for a new access token, before it expires. Facebook has a single type of access token (no refresh tokens). A about-to-expire access token should fetch you a new access token.
To manually extend the tokens using a Graph API endpoint ::
GET /oauth/access_token?
...
1
Try to programmatically revoke the token by making a request to - https://accounts.google.com/o/oauth2/revoke and include the token as a parameter. Something like this ::
curl https://accounts.google.com/o/oauth2/revoke?token={token}
The token can be an access token or a refresh token. If the token is an access token and it has a corresponding refresh ...
1
When you set offline access mode, your app gets a refresh token when the user logs in for the first time.
access_type ::
Indicates if your application needs to access a Google API when the
user is not present at the browser. This parameter defaults to online.
If your application needs to refresh access tokens when the user is
not present at the ...
0
I ended up using oauth2app and it only took me some minor changes in order to get in work with django-nonrel.
The only restriction is that the model classes in oauth2app use ManyToManyFields and this is not supported in django-nonrel, so I ended up changing them to ListFields. This then yields to some minor changes concerning the queries done in the ...
0
Correct me if I am missing something, I'll edit right away.
However you are storing the access tokens you never need to run a query on the tokens themselves. You would run a query on the userID or something and fetch the access token for that customer. I say this because the tokens are supposed to contain data that you can extract.
How are you dealing with ...
1
I've found that the typical solution to the problem I asked in this question is to use XAuth.
Many providers such as Twitter and the application I am currently working against support XAuth to provide a simplified flow without the user interface based authentication.
What is the difference among BasicAuth,OAuth and XAuth?
0
Worked it out. The first time a user logins in UserProvider::loadUserByOAuthUserResponse() receives a `UserResponse' that contains the email address of the user. I'm using this to load the user from my database.
However, every 5 minutes it checks the token against the OAuth provider again, by checking the user's access token (stored in the user's session). ...
1
Don't use client-side oauth, make it through the "server side" of node-webkit. That means, you can popup a window, redirect it, close it when you are done. All the necessary information you need to pass using the request library, or API SDK for the Facebook oauth.
Part of this process I've posted in here window.open without popup blocker using AJAX and ...
1
If you are using only one box enterprise account then you can always create your access token and refresh token just once using browser and then programmatically refresh your access token before 14 days using cron on server side.
0
Please visit Below Link may be Help you
http://www.asp.net/mvc/overview/getting-started/using-oauth-providers-with-mvc
0
Solved.
Scope for contacts in Auth was set to: https://www.google.com/m8/feeds/contacts/default/full/
Apparently this doesn't work anymore and I just set https://www.google.com/m8/feeds/ for auth
and the full url for querying in ContactService
1
If you look at the API endpoints provided by all popular OAuth providers (Google, Facebook, Pocket, Git etc), you'd see that they all have HTTPS endpoints. So, your API should use the HTTPS protocol in the first place.
When you are using HTTPS, you should add support to one or generally more ways of passing the token.
i) As Query Parameter -
...
-1
I've finally figured this one out. It looks like the docs and sample are a bit outdated, because just having DriveScopes.DRIVE_FILE for the scope isn't enough, it needs to be prepended with "oauth:". Lame.
Here's my code:
try {
// Trying to get a token right away to see if we are authorized
GoogleAuthUtil.getTokenWithNotification(mContext, ...
0
This example may be closer to what you are trying to do. http://www.limilabs.com/blog/oauth2-gmail-imap-web-applications
0
The query should be in the body of the POST request instead of the url. This is a common gotcha.
0
Here are my answers in order,
OAuth 2.0 is the best fit for you. I would say you should go for OAuth.
Definitely yes.
There are libraries. Apache Oltu and Google client library.
OpenID Connect specification which is built on top of OAuth can be used to implement SSO.
1
In swauth (after version 1.0.7), try to include "X-Auth-New-Token: true" in http header. And then swauth will issue a new token and revoke any old token.
0
Found it.
ACS doesnot expose any API which converts a SAML token to an OAuth 2.0 token.
The possible alternative is that on receiving a SAML token, break open the token, verify the authenticity of the user and successively, fetch OAuth token for the user using live id APIs.
It will definitely double the latency for your signin process.
1
Just a note on what worked for me in:
For steps 3, 4 & 5 I used cURL instead to retrieve the Access/Refresh token. Step 6 is then the same for me (using the Sija branch of the Garb Gem). So using cURL:
Using the details associated with your Google app POST the following using cURL:
curl --data ...
0
Turns out it was a problem with how dispatch finds out the hostname from the request url. In this case
val req = :/("https://accounts.google.com/o/oauth2/token").secure
Dispatch interprets the hostname as "https://accounts.google.com/o/oauth2/token" which is not available and hence it throws an exception. To counter this we need to structure the req url ...
1
I advice you to give a look to this library PHPoAuthLib (if you didn't yet)
It supports OAuth 1 and 2. You can install it with Composer / Packagist.
There are a lot different implementation examples like twitter, facebook, linkedin etc... You see these examples here.
1
I've soldiered through this over the last few weeks, so let me share what worked:
To use Oauth2 you need to get a 'refresh token' that you use to 're-authenticate' with google each time you make an API call. The steps for this are as follows:
1) Setup your account in the API console - https://code.google.com/apis/console/b/0/ (seems like you've done that ...
1
If the access token is compromised, the app that now has it CAN misuse it. Since access tokens are short lived, and are mapped to certain permissions only - the damage would be limited to say 10 minutes access to a single resource! (tokens are generated for apps that are registered for a scope, the scopes are mapped to permissions.)
If you are working on a ...
0
You do not need OAuth for SSO services.
The primary use + advantage of OAuth is, as you know already, granting access to a 3rd party app to access/use your resource in a controlled manner.
Rather than having an authentication/authorization server that you would need for OAuth, why not use a single log in service across all your APIs. An OAuth access token ...
1
The general idea is to let a central auth server to handle the credentials + token generation + policy handling (policy => is this app authorized by this user).
Let's talk of the OAuth server first.
i) The server is responsible for a login page where the user can key in his credentials.
ii) Validates the credentials, if correct this server then checks which ...
0
I had the same problem, what I did ( I suppose It's not the best solution) was, to place the methods of the REST server, inside an "@Security.Authenticated(Secure.class)" , and, use a session cookie (which also was registered inside a Hash table in backend). The session cookie was generated after user sign-in
I post code:
package controllers;
import ...;
...
1
Looking at the docs you linked, it looks like the Google Mail oauth2 module is meant to be downloaded and used in-place.
You can, of course, install it… but you can't have two (top-level) modules installed with the same name, so you'd have to uninstall python-oauth2 first.
But if you just use it in-place, in Python 2.7, you can have an oauth2.py in one ...
0
Mobile apps work perfectly fine with OAuth.
SSO can be enabled using OAuth.
Some info on how to set up a OAuth server/provider - How would an efficient OAuth2.0 server / provider work?
As you say, you need to ask the user for authorize an app (accept/deny permissions that the app asks for) - perfect use case for OAuth 2.0.
Feel free to follow up if you ...
0
Your app should be registered here.
And it should be registered for the scope where you send the access token in return for data. Check the link, register the app and get your client credentials. Then register for the relevant scope.
And add more information to your question!! What are you using, what is the code etc,
Top 50 recent answers are included






