Questions tagged [okta-api]

API for single sign-on service OKTA

436 questions
2
votes
2 answers

How to pass/verify Open ID token between .net core web app and web api?

We have the following architecture: .NET core 3.1 web application using razor pages, jQuery, etc as the UI (not an angular application) .NET core 3.1 web api application serving as our api layer Okta as our identity provider I have implemented the…
Buckles
  • 161
  • 1
  • 9
2
votes
2 answers

Python Loop Get Request

I have a list of users in a text file that I am reading into python, [john, mary, bob, alice] I am trying to make an API call to an application to get information about the user profile in that application. I am able to make a request using python…
OneFree
  • 21
  • 1
  • 2
2
votes
1 answer

How to iterate through all the data through okta api with limited calls using okta python SDK

I am using OKTA Api where I want to get the groups. There are currently close to 50k groups and the API is making a request and pulling in 10k groups. While the api limit is 1000? Which is weird, maybe I was provided 10k request, who knows. Anyways…
Jeremy Lin
  • 248
  • 1
  • 12
2
votes
1 answer

How can i use OKTA API to create/modify attributes of a public application like O365

I have used Postman per the OKTA developer docs to create a new SAML 2.0 app and that works fine. However, I wanted to know how I can modify my code to edit/or create an instance of a published app like Office 365. I posted my question on OKTA…
jeyyu2003
  • 47
  • 2
  • 7
2
votes
0 answers

How do I integrate SAML 2.0 in micronaut?

I followed this tutorial and completed setup, but I do not understand how do I use it in Micronaut? Please help me with the following? Using io.micronaut.context.env.Environment I can load specific certificate, but is this loaded from X.509…
Ricky
  • 314
  • 1
  • 7
  • 22
2
votes
0 answers

django-allauth openid implementation for Okta

So I am following this doc. I added the following into my settings.py SOCIALACCOUNT_PROVIDERS = { 'openid': { 'SERVERS': [ dict(id='okta', name='Okta', …
Kishor Pawar
  • 3,386
  • 3
  • 28
  • 61
2
votes
1 answer

How do I login to okta without redirecting to the okta website for authentication?

I am using the below code : https://github.com/oktadeveloper/okta-android-example/commit/5d01efe98b9a73937c8eeec92797117ad1f8a72b for testing okta authentication, but it redirects me to the okta website for authentication and i would like to make…
user2386226
2
votes
1 answer

Is there a way to check if a new account has just been created using the Okta Authentication API?

I want to use Okta to safely store my users names and passwords; however, they also have information such as (to be general) age, birthday, graduation date, interests, etc. to be stored as well. The Okta API does not store this info so upon account…
2
votes
0 answers

Infinite loop with okta and react-persist

I created a react application using the package '@okta/okta-react' and everything is (was…) ok. I added 'react-persist' to my project and now I have an infinite loop of redirects from the homepage to the /implicit/callback route with the…
rvandoni
  • 3,297
  • 4
  • 32
  • 46
2
votes
0 answers

Okta Self User Registration page not showing up

I am trying to add the sign up link to my okta login widget. I had aded the user registration policy in the okta admin dashboard. But when i am clicking on the Sign Up link it shows an empty dailog box. On inspecting in console i got this…
Rahul Sah
  • 329
  • 6
  • 15
2
votes
0 answers

Programmatic authentication to the Artifactory API, via Okta

We're using SAML SSO with Okta, which has Desktop SSO (Kerberos). I'm wondering if it's possible to get an access token for Artifactory's API programmatically, without prompting the user for credentials. The Artifactory user guide mentions you can…
plloyd
  • 33
  • 4
2
votes
0 answers

Okta-React redirects to okta instead of my site at login

Okta-React is redirecting to my okta instance instead of redirecting to my specified route when I log in. import OktaAuth from "@okta/okta-auth-js"; const oktaAuth = new OktaAuth({ url: process.env.REACT_APP_OKTA_BASE_URL, clientId:…
John
  • 1,808
  • 7
  • 28
  • 57
2
votes
1 answer

oktaSignIn login success but not able to redirect url

I created the okta sigin login page using angularjs and I got the response as success for okta api.how to redirect the page after login. I have attached the screenshot below: please find the solution....
Vinodhini R
  • 71
  • 1
  • 8
2
votes
1 answer

What is this Okta API pagination next value?

I am using Okta for SSO. I want to list all Okta users, but the API has a max limit of 200. So I need to use pagination here. Initial I used the URL {{url}}/api/v1/users?limit=200 Not I got the response with the first 200 users, and a next link in…
Raghaven 3534
  • 286
  • 1
  • 5
  • 10
2
votes
1 answer

Implicit Callback redirects to the Angular component and then to homepage automatically

So I connected my Angular App to Okta login functionality. Here is the scenario - Below is the routes setup. When the user lands on the site localhost home is displayed - works fine. User clicks on Login button on Navbar, the redirect to Okta login…
Aakash
  • 3,101
  • 8
  • 47
  • 78