
PascalD.84940 (Customer) asked a question.

We use cookies to provide the best website experience and to help understand marketing efforts. We may also share data with ad partners to reach potential customers across the web. To learn more, visit our Privacy Policy. Click here for Your Privacy Choices. You may also opt out of this sharing by signaling your preference via GPC, applicable only to the browser signaling the opt-out.
More information
These cookies are necessary for the website to function and cannot be switched off in our systems. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms. You can set your browser to block or alert you about these cookies, but some parts of the site will not then work. These cookies do not store any personally identifiable information.
These cookies enable the website to provide enhanced functionality and personalisation. They may be set by us or by third party providers whose services we have added to our pages. If you do not allow these cookies then some or all of these services may not function properly.
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us to know which pages are the most and least popular and see how visitors move around the site. All information these cookies collect is aggregated and therefore anonymous. If you do not allow these cookies we will not know when you have visited our site, and will not be able to monitor its performance.
These cookies may be set through our site by our advertising partners. They may be used by those companies to build a profile of your interests and show you relevant adverts on other sites. They do not store directly personal information, but are based on uniquely identifying your browser and internet device. If you do not allow these cookies, you will experience less targeted advertising.
Select All

We use cookies to provide the best website experience and to help understand marketing efforts. We may also share data with ad partners to reach potential customers across the web. To learn more, visit our Privacy Policy. Click here for Your Privacy Choices. You may also opt out of this sharing by signaling your preference via GPC, applicable only to the browser signaling the opt-out.
More information
These cookies are necessary for the website to function and cannot be switched off in our systems. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms. You can set your browser to block or alert you about these cookies, but some parts of the site will not then work. These cookies do not store any personally identifiable information.
These cookies enable the website to provide enhanced functionality and personalisation. They may be set by us or by third party providers whose services we have added to our pages. If you do not allow these cookies then some or all of these services may not function properly.
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us to know which pages are the most and least popular and see how visitors move around the site. All information these cookies collect is aggregated and therefore anonymous. If you do not allow these cookies we will not know when you have visited our site, and will not be able to monitor its performance.
These cookies may be set through our site by our advertising partners. They may be used by those companies to build a profile of your interests and show you relevant adverts on other sites. They do not store directly personal information, but are based on uniquely identifying your browser and internet device. If you do not allow these cookies, you will experience less targeted advertising.
Select All
First, the Authentication API does not require an API Token. If you are looking for a customizable HTML form option, then you should take a look at the Okta Sign-In Widget, a JS/HTML based Okta Authentication API solution. It is a lightweight library that quickly can be used to authenticate users against your Okta org. See here: http://developer.okta.com/code/javascript/okta_sign-in_widget.html
Second, just for clarification, the API token does take on the permissions of the user that created it. If a SU creates an API token, then the token will have SU permissions. If an App Admin creates a token it will have SU permissions.Thanks for the answer.
Sorry if I sounded "lost", I'm not the person who originally worked on the project and I'm trying to piece it all together. From what I can see, we are using SAML for the authentication between OKTA and our JAVA Web Application. This works fine (and does not seem to require the API Token). Where we are using the token is for the user authentication that have to be done for specific operations from within our application (user have to confirm the operation by entering their username/pwd which needs to be validated in order for the operation to be completed). For this, we have used the com.okta.sdk.clients.AuthApiClient java object. An ApiClientConfiguration object (that requires a base url and an api token) is sent to the AuthApiClient's constructor and user authentication is done by calling authClient.authenticate(...). Would the AuthApiClient be able to authenticate the users without the need for the API Token? Or, assuming this could not be changed, would there be a simple way to prevent the token to have access to other apps (with rules or policies or a very specific user created solely for this purpose and who would then create the API Token )? What would you recommend?