NetSuite OAuth 2.0 Client Credentials using Postman - oauth-2.0

I am trying to connect netsuite using Postman's get auth code functionality. According to NetSuite help center a POST request needs to be sent to the token endpoint with the JW token and grant type.
But if we go to postman and select Oauth 2.0 client credentials in the Authorization then we get a button "get auth code" And fields like client id, client secret and the urls. After entering all the details its not working.
Only the POST request is working.
The reason I am asking this is I am trying call some restlets from Appian. But in the Appian screen we only get client id, client secret, auth url and token url field.
Any idea on this
I am trying to connect netsuite using Postman's get auth code functionality. According to NetSuite help center a POST request needs to be sent to the token endpoint with the JW token and grant type.
But if we go to postman and select Oauth 2.0 client credentials in the Authorization then we get a button "get auth code" And fields like client id, client secret and the urls. After entering all the details its not working.
Only the POST request is working.
The reason I am asking this is I am trying call some restlets from Appian. But in the Appian screen we only get client id, client secret, auth url and token url field.
Any idea on this

Related

How to generate OAuth2 Bearer Token with C#

I am currently developing a method which requires a call to an API. To make the request, I need bearer token, and I am stuck at the HTTP request part for the token. I can get a token easily with postman, but I have no idea how to do on C#. I have access to the following parameters:
Callback URL
Authentication URL
Access Token URL
Client ID
Client Secret
Scope
I am familiar with RestSharp, and open to use any other libraries as well.

How to get just the auth code of an OAuth2.0 flow via Postman

I have an API /code-for-token that accepts an OAuth2.0 Authorization code and exchanges it for an access token.
Using the Postman Authorization tab I'm able to complete the entire auth flow and retrieve a token, however, what I want is just the authorization code to pass to my /code-for-token endpoint.
Is it possible to trigger Postman's browser to access the authorization login portal and then capture the code that will be inside the query params of the redirected url?
Is there some other way to accomplish retrieving the authorization code?

How can Postman get the OAuth 2.0 auth token in the authorization code flow?

I'm using Postman a lot for API development. Most of time I use OAuth 2.0 for authentication. As this post says, the Authorization Code flow steps are as below:
The application opens a browser to send the user to the OAuth server
The user sees the authorization prompt and approves the app’s request
The user is redirected back to the application with an authorization code in the query string
The application exchanges the authorization code for an access token
In step 3, I think the user is redirected back to the application by using the redirect url. But what we always provided in the request is the configured url for real application that should get the auth code instead of Postman. I'm quite confused how can Postman get the auth token as the redirect url has no info about it.
The identity provider will create the authorisation code and return it to the redirect URI as a query string parameter, in a parameter named code the url will be yourdomain.com/app?code=authorisation-code
In postman it is possible to retrieve an access token for a Authorisation Code flow client.
Click the authorisation tab for a request, in the type select oAuth 2
Then click the orange Get Access Token button, it will prompt a new window where you can input your client & idp information.
When you click the request token button it will prompt you to enter your credentials at this point it will retrieve the authorisation code and automatically exchange it for an access token using the client id, secret and scopes that you configured on this screen, if everything is successful then you will receive your access token.
I am currently tracking a question on how to automate this process to be executed as part of the execution runner: Postman - Access Token Retrieval using Authorisation Code grant type

Using OAuth 2 in Postman for Save to Android Pay API

I've seen these questions about using Postman in order to invoke Google's API with OAuth 2:
Using Postman to access OAuth 2.0 Google APIs
Could not obtain Google oAuth 2 token on POSTMan
and many more, but they all have client ID and client secret.
For the 'Save to Android Pay' API, all I got is a .p12 key and an issuer ID. I also have Service Account Email Address but defiantly no client id or secret. I think I also have the Auth URL but I'm not sure: https://www.googleapis.com/auth/wallet_object.issuer
Looking in the Save to Android Pay API, doesn't say anything about a client id so I'm really not sure how I'm supposed to obtain a token in POSTMAN with what I have.
So my question is: giving a .p12 key, an issuerId and a Service Account Email Address, What do I need to fill in POSTMAN OAuth 2 fields:
Token Name, Auth URL, Access Token URL, Client ID, Client Secret, Scope (Optional), Grant Type
To obtain OAuth 2.0 client credentials, you need to register an application to the Google API Console as specify in the basic steps and then you'll get a client ID and client secret.

How to get a jwt token from url in header? Using OpenAM and Oauth2

Related topic
I configured OpenAM as Oauth2 Authorization Provider and also setup a Oauth2 Client on the same instance via " OAuth 2.0/OpenID Connect Client". As scope i choose "openid" and as Response_type "id_token" so that my authorize URL Looks like the following: http://FQDN:PORT/OpenAMTest/oauth2/authorize?client_id=jwt-bearer-client&response_type=id_token&scope=openid
Now when i enter the URL I get the OpenAM Login Screen, then I enter the credentials and get asked if i want to allow this application to request my private Infos. When I press "allow" a JWT token gets generated. I see that in the URL (id_token=eyAidHlw...) but I want this JWT token to be in the HTTP Header so that i can later on in my application validate it by reading it from the request. Do you know how this is possible?
Thank you in advance
After OpenAM authenticate the user it makes a redirect to your application with token as URL parameter. I'm afraid it cannot instruct your browser to send the token as HTTP header with redirect. It is a limitation in all browsers.

Resources