Questions tagged [okta-api]

API for single sign-on service OKTA

436 questions
0
votes
1 answer

C# .NetCore Okta Search for Users

I am trying to figure out how to search for users in Okta using the SDK and .net core in C#. outside of .net core I am able to do this using Okta.Core but that is not supported in .NET Core. I can't find any documentation for doing this stuff in…
Bigbacon
  • 19
  • 6
0
votes
1 answer

Adding properties to Okta UserProfile - Java API version 0.0.4

Java API version 0.0.4 for Okta UserProfile class in the com.okta.sdk.models.users package allows email, secondEmail, firstName, lastName, and mobilePhone to be saved to the user profile. However, I'm trying to store additional properties to the…
Donalg D
  • 85
  • 1
  • 6
0
votes
1 answer

SamlCredential does not retrieve group attributes from Okta SAML response

I am using Okta as IDP and I have configured the user attribute statements and group attribute statements like this And by providing a custom samluserdetails I am able to retrieve user attributes but not group attributes. public class…
tryingToLearn
  • 10,691
  • 12
  • 80
  • 114
0
votes
1 answer

Differentiate between SAML verified and other apps on okta api

How to differentiate between SAML verified and other apps on okta api. Is it possible to achieve this via filter or we have to do some offline processing on responses of all apps received. I am trying to achieve the above query using get request on…
0
votes
1 answer

Jetty: Error initializing keystore

For starters, I have already refereed these questions on stackoverflow and they didn't solve my problem, therefore creating a new one: java.io.IOException: Invalid Keystore format tomcat 7 ssl invalid keystore format Problem: While integrating SAML…
tryingToLearn
  • 10,691
  • 12
  • 80
  • 114
0
votes
1 answer

Xamarin - Native Passwordless Authentication

Is it possible and does anyone have any experience of implementing Passwordless authentication on Xamarin - either with Auth0, Authy or Okta (or any other similar provider for that matter)? I am looking to implement an onboarding experience for my…
Tomás
  • 535
  • 6
  • 23
0
votes
1 answer

OktaAuth Javascript + Flask not sending code & state value to Flask

I am new to okta, javascript. I am trying to add OktaAuth to existing Jquery/javascript + Flask app. I have configured the following in my Javascript. The redirect calls to server-side callback works. But don't pass code, state values for it to…
PraveenK
  • 163
  • 2
  • 11
0
votes
1 answer

X-Okta-XsrfToken and JS Widget

I've noticed that when JS component makes calls to authorise (/api/v1/authn) its got an empty header in the request called 'X-Okta-XsrfToken'. Should that be set or is it defunct?
martin samm
  • 127
  • 2
  • 7
0
votes
1 answer

Cookie management using Okta authentication api

In my app I have called authentication api and below is code for same NSMutableDictionary* paraDict = [[NSMutableDictionary alloc] init]; [paraDict setObject:@"userid" forKey:@"username"]; [paraDict setObject:@"password"…
Sagar...
  • 1,062
  • 3
  • 15
  • 35
0
votes
0 answers

How to detect if group is deleted from user in Okta

I am trying to get deleted groups from user via rest api in Okta. I cant see any anything which gives me information of deleted groups from user in Okta. How can i detect if group is removed from user in okta.
Anand Dhage
  • 109
  • 17
0
votes
0 answers

cvc-complex-type.3.2.2: Attribute 'pattern' is not allowed to appear in element 'security:http'

Below is my securityContext.xml but i am not able to catch the error why it is throwing the error, i am new to springsecurity , please help.
user2181255
  • 11
  • 1
  • 3
0
votes
1 answer

SAML enabled site

We want to implement single sign on in our applications and want to use OKTA api. But our application need to be SAML enabled for us to proceed forward. Currently we use forms authentication in our applications. Could someone share details about…
aman
  • 4,198
  • 4
  • 24
  • 36
0
votes
1 answer

Issue using SAML for authentication with spring boot app

I'm currently reading this article on how to set up SAML with Spring Boot applications. I followed all the steps and I just changed the Single Sign On URL from "https://localhost:8443/saml/SSO" to "https://localhost:8443/mycompanysaml/SSO". When I…
yimson
  • 49
  • 2
  • 14
0
votes
2 answers

Last Login Date to Application

I am looking for an API to find the user's last login date to a particular application. Not sure if it exists, please let me know your thoughts on getting this information through API calls.
0
votes
0 answers

How to prevent MITM attack while setting password using activation link

I am sending activation link throught email id which inturn is calling after creating user.These are the steps that I am doing: Create User Without Credentials.(OKTA API) Activating user with send email set as false.(OKTA API) Through my own code I…