Most voted "oauth2" questions
Oauth 2.0 is an authorization protocol that enables applications to access data mutually. Game applications can access your Facebook account, for example, or a local application can access Foursquare data.
Learn more…85 questions
Sort by count of
-
0
votes1
answer448
viewsProblems upgrading from access token
I’m authenticating the Google Calendar API using Scribe, which uses Oauth 2.0 instead. Authentication is completed successfully but I don’t know how to store the access token (accessToken) in the…
-
0
votes1
answer230
viewsFacebook Login with REST API
I integrated an Android app with Facebook and can already login there. Now, I have to integrate that Facebook login with the authentication part of my API. For example, now, what I can do is log in…
-
0
votes1
answer400
viewsImplement Oauth server
I would like to know how to implement an authentication server using Oauth. If anyone has a clue how to do that, I’d appreciate it.
-
0
votes0
answers11
viewsOauth in Azure does not open
I’m working with Google Drive API and localhost the Consent screen - the one you authorize the application to make changes and view your data - normally opens in a new browser tab. But when I move…
-
0
votes1
answer91
viewsLog into site using Satellizer.js
I need to make an application where the user can login through facebook and Soundcloud, and I found this https://github.com/sahat/satellizer to do this, and according to this page…
-
0
votes1
answer90
viewsGoogle Consent screen does not open
I made an application that has the function of backing up to Google Drive, but it does not work when I put in some server, works only in localhost. What happens is that it doesn’t open the consent…
-
0
votes1
answer380
viewsHow to persist and update oauth 2.0 Access Token from Google?
I have a Google Analytics account and need Token Access to make some requests that return data from this account. Whenever I use oauth to authenticate it works, however, when I change page the data…
-
0
votes0
answers541
viewsHow can I make an Oauth2 authentication from a native android app with a site developed with wordpress?
I have a site developed with wordpress, and not on the wordpress platform.com . Lately I have been doing tests to use restfull and consume the data via json by native android application. Only that…
-
0
votes2
answers176
viewsUse Google Oauth2 without going through the google login page
I’m starting to implement the use of google oAuth authentication in my application. some tests done working and tals, but always having to go through the google login and consent screen. I wonder if…
-
0
votes1
answer157
viewsAPK validation at Google
I have a app I need to validate the integrity of the data. For this, I need the google Tell me if that app was signed by him or not. But for this to work, I need him to run me a token for…
-
0
votes1
answer98
viewsOauth 2.0 stream for multiple API authentication using an authentication server
When logging in through my front-end layer, a request is sent to my authentication server which in turn returns a Bearer Token that may be saved to a cookie, for example. No doubt about it! My…
-
0
votes1
answer490
viewsPass Headers on a route in the Laravel
Good Night, I am working with Laravel 5.3 on a solution, because it is an API application, I chose to use Laravel Passport as authentication. I have a certain difficulty in being able to load the…
-
0
votes1
answer757
viewsASP.NET MVC & WEB API token authentication
I have a question about the token bearer. I have two scenarios in my application. 1º is an admin panel that works with ASP.NET MVC and Angularjs and the 2nd is the WEB Api that exchanges requests…
-
0
votes1
answer202
viewsWeb API - Blocking server-specific calls
Well I have the following doubt, after implementing the CORS in an application, I saw that there is still a security breach that is, if an application(Postman, Curl) make direct calls on the server…
-
0
votes1
answer60
viewsAdd Parameters query to url redirect in Implicit Flow authorization process
During the process of authorising an application via Implicit Flow in Jasmin it is possible to pass some extra information in the request so that it is included in the redirect uri when this is…
-
0
votes1
answer196
viewsHow to get a refresh token in Jasmin using the Authorization Code Grant process
In the last step of the Oauth Authorization Code Grant process when asking for a access_token from the url https://identity.primaverabss.com/connect/token this is not returning the refresh_token as…
-
0
votes1
answer67
viewsUsername change in token OAUTH2
I have a Rest API in spring with OAUTH2 my doubt is the following, it is possible to change the username that is written in the token of each session of OAUTH2. My problem basically is, that to…
-
0
votes1
answer140
viewsAPI testing by passing token
Good morning, I’m doing Api Testing, as follows the example: @Test public void shouldStatus200_FindAll() { RestAssured.enableLoggingOfRequestAndResponseIfValidationFails();…
-
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
votes0
answers142
viewsLogin com instagram em app Android
I have a beginner’s doubt that this is causing me a certain inconvenience. How to log in with an Instagram account and pick up the list of followers and people I follow? I’ve seen several video…
-
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
answer28
viewsOauth2 Authorization Problem using Wamp in Laravel 5.1
Good evening, I am studying API Restfull with Laravel 5.1 and came across a problem to request a request in Oauth. When running the built-in PHP server works normally…
-
0
votes1
answer205
viewsProblems generating Oauth access token with Httpurlconnection
I’m trying to file a request for a web service that uses Oauth to generate an access token. However, although the request returns the Http 200 code, json only appears as…
-
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
answer77
viewsOauth with Dependency Injection
Hello, I’m starting my studies with Oauth, and right away I came across a problem. I created the famous 'Startup' class, and in it I call my predecessor as follows: public partial class Startup {…
-
0
votes1
answer394
viewsHow to consume an authenticated service with Oauth2 on Nodejs?
I am trying to implement Oauth2 authentication in a REST Nodejs application with Express + Passport. My REST Nodejs application will be an API for a service to be consumed by a mobile application,…
-
0
votes0
answers24
viewsmicrosoft-Graph getting only Scope user.read
Hello! If anyone can help. I’m trying to get emails from some of our organization’s 365 accounts to integrate with a CRM application. The program is in PHP and I’m trying to access in microsoft…
-
0
votes1
answer105
viewsHow does Password Grant Tokens work on Windows?
I want to develop an application to consume a Rest api and I want to add API KEY to validate the communication between the client application and the service (cross-device validation), application…
-
0
votes1
answer170
viewsHow to customize the authentication failure error to return a message in Body from the reply?
When an authentication failure occurs in Spring Security, it returns an error in the response header. I would like to customize the error and return a message in the reply Body. Below is the code…
-
0
votes1
answer64
viewsTrouble getting Oauth2 token
I’m having trouble getting the token from Oauth2 I’m trying by Postman to get the token. I have registered in the user who is trying to get a token { "statusCode": 400, "status": 400, "code": 400,…
-
0
votes2
answers444
viewsHow to authenticate user using your Google account in an app built with Expo (React Native)?
I’m developing an app with PHP in the backend and React Turn on the mobile frontend. The app already has a web frontend written with jquery, and the authentication is done using Google Oauth. In the…
-
0
votes0
answers21
viewsInvalid_grant when updating vuex-oidc nuxtJS token with automaticSilentRenew option using Keycloak
I would like to update the Keycloak access token on nuxtJS login using the vuex-oidc library, but I get the invalid-Grant error when the token expires and the user is dropped. I need the user to…
-
0
votes1
answer32
viewsCurl Auth Returning Strange Carcteres
Hello, I am accessing an api that when sending an auth2 with clientId and clientsecret is received the token for validation in other requests; The problem is that when receiving the token I cannot…
-
0
votes0
answers15
viewsValidation of Google User Token in the back end
I’m facing a problem and I’ve already lost hours on forums and on google certification, but I can’t find the solution. I have the following scenario: A front-end that is from a third company logs in…
-
-1
votes0
answers7
viewsI need to take information from the nextAuth service profile function and forward it to the browser
Hello I am making an app that uses as authentication a backend of its own, and in the authentication with google I am using next-auth, it sends the tokenid to the api via post and with that the…