API for single sign-on service OKTA
Questions tagged [okta-api]
436 questions
3
votes
0 answers
Access control allow origin is not present in response header
I am using Okta for my flask web services authentication. Trying to consume protected services from Ajax. While doing that I am getting below error:
Access to XMLHttpRequest at 'https://org.okta.com/oauth2/ausl2cu6foKJx4WXS0x7/v1/authorize/?'…

user1632980
- 275
- 1
- 3
- 10
3
votes
1 answer
OKTA integration with other SSO
I want to integrate OKTA with CAS using SAML2.0 protocol,
I want to use OKTA as middle ware, So I will configure my application through OKTA, and then OKTA will communicate with client SSO,
For ex: On hit of login url, page should redirect to…

bharatpatel
- 1,203
- 11
- 22
3
votes
1 answer
Angular 2/5 and SAML authentication via Okta
We are building an Angular 5 app front end application with Node as the back end layer. The API requests to node from angular are authenticated via basic authentication but we are planning to implement SAML authentication for Angular web application…

Alice
- 271
- 2
- 12
3
votes
2 answers
kid not matching on OAuth 2.0 flow
I'm using Okta for identity management. As the client in authorization flow, I send an authorize request to Okta. This works successfully, and I get a JWT payload. I want to verify the JWT signature, so I make another call to Okta in order to fetch…

Magua
- 258
- 1
- 9
3
votes
1 answer
Okta SignIn Widget with SAML
We have a Single Web Page application developed with Spring Boot + AngularJS, and we want integrate Okta for the authentication part.
I have created a developer account on the Okta website, and configured an application using SAML 2.0
Then I…

rmanga7
- 31
- 1
- 2
3
votes
1 answer
authenticate to SharePoint through OKTA from back-end service
I have a need to programmatically connect to a customer's SharePoint server that uses OKTA for authentication. I saw this post which looked promising, but cannot seem to get a valid session cookie back from OKTA.
I can successfully call the…

Mike
- 1,031
- 14
- 36
3
votes
2 answers
How do I get a StateToken for basic Authentication through Okta with .net sdk?
I am building an internal Web API(asp.net) and I need to integrate our Okta authentication with it. I have the SDK installed through NuGet and I am able to do simple things like get a User and see there Profile.
What I really need to do though is…

Refracted Paladin
- 12,096
- 33
- 123
- 233
2
votes
1 answer
NodeJS: Unable to verify JWT with Okta JWT Verifier
I am trying to verify a JWT token sent from a frontend app using the @okta/jwt-verifier package.I keep getting the below error
JwtParseError: Error while resolving signing key for kid "kp2hms0pqlMsflp34dc"
innerError: Error: unable to get local…

Teknoville
- 459
- 1
- 7
- 18
2
votes
2 answers
How to solve "No compatible browser found" error in Okta login?
While trying to login into the OKTA login page, the android device is giving this error,
And the login fails.
D/MainActivity: null onError
AuthorizationException: {"type":0,"code":10,"errorDescription":"No compatible browser found"}
at…

Sweta Jain
- 3,248
- 6
- 30
- 50
2
votes
1 answer
How can I pass okta authentication token to my webdav server through ms-office desktop applications?
Question: I have a WebDAV server and I want to implement security with the help of okta. We have an Okta Authorizer on load balancer level, which authenticates each and every request. When I open a document from this WebDAV server on ms-office…

RV7
- 55
- 5
2
votes
1 answer
Unable to authenticate (okta) a post request to a route from within a route getting a 401 Unauthorized response. GET Request works
I have a nodejs app utilising express using @okta/okta-sdk-nodejs and @okta/oidc-middleware to handle authentication.
I have a number of routes that work fine and are authorised as expected. The following flow generates a 401 status code and I am…

CassOwary
- 31
- 7
2
votes
1 answer
Okta: How to retrieve Access Token via SessionToken (JavaScript)
Im able to fetch the "sessionToken" via the Okta API, however how am I able to retrieve the AccessToken with the "sessionToken"?
I am using the JS SDK: https://github.com/okta/okta-auth-js
let oktaConfig2 = {
issuer:…

yush
- 365
- 9
- 26
2
votes
1 answer
Okta: Fetching Access Token via JavaScript
I've been struggling to really understand the Okta docs regarding this but basically im trying to fetch an Okta Access Token via their API using Vanilla JS.
I am using the following JS SDK to simplify…

yush
- 365
- 9
- 26
2
votes
0 answers
Getting error "UNABLE_TO_VERIFY_LEAF_SIGNATURE" from Okta JWT Verifier
Trying to verify Okta token using @okta/jwt-verifier module but getting below error
parsedBody: JwtBody {
ver: 1,
jti: 'xxxxxxx',
iss: 'xxxxxxx',
aud: 'api://default',
iat: 1596797376,
exp: 1596800976,
cid: 'xxxxxxxx',
…

Renjith Kathirolil
- 81
- 11
2
votes
1 answer
OKTA Sso python
Hi I want to access an application that is behind OKTA sso. I am using python requests module for accessing the application. Before Okta I was able to access the application with userid and password from my python script. But after okta the script…

Avishek
- 390
- 4
- 22