okta-sdk-php icon indicating copy to clipboard operation
okta-sdk-php copied to clipboard

PHP SDK for the Okta API

Results 21 okta-sdk-php issues
Sort by recently updated
recently updated
newest added

`posix_getpwuid` might return `false` if it fails to get the user data, which is most common in Docker environments.

Need laravel 9 support. At least "illuminate/collections": "^9.0", probably "php": "^8.0", maybe something more

Bumps [minimist](https://github.com/substack/minimist) and @okta/openapi. These dependencies needed to be updated together. Updates `minimist` from 0.0.10 to 1.2.6 Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto...

dependencies
javascript

Bumps [handlebars](https://github.com/wycats/handlebars.js) and @okta/openapi. These dependencies needed to be updated together. Updates `handlebars` from 4.0.8 to 4.7.7 Changelog Sourced from handlebars's changelog. v4.7.7 - February 15th, 2021 fix weird error...

dependencies
javascript

After application update via PUT method need to rebuild a cache https://developer.okta.com/docs/reference/api/apps/#update-application

Hey With the update in the README "This repo will be placed into security patch only mode" it's worth pointing out that the last tagged release of this module from...

how to set user's group when create user? use function of "addToGroup" will return a error "The endpoint does not support the provided HTTP method"

Hello, I have a problem updating a drupal website to latest version (9.2.x) due to the fixed version of some of this package dependency : > Problem 1 > -...

```php $client = (new \Okta\ClientBuilder) ->setOrganizationUrl($orgUrl) ->setAuthorizationMode(new \Okta\Utilities\AuthorizationMode(\Okta\Utilities\AuthorizationMode::PRIVATE_KEY)) ->setClientId($clientId) ->setScopes("okta.users.read okta.apps.read") ->setPrivateKey("{{PEM PRIVATE KEY BLOCK}}") ->build(); ``` Seems to trigger this error. I believe the reason is that the code...

I'm having trouble using the application [assignUserToApplication](https://github.com/okta/okta-sdk-php/blob/cc2bb956d02e93a06fa2603feadeb82806b1eb3f/src/Generated/Applications/Application.php#L443) method, which requires an AppUser. Here is my current code: ``` $oktaAppUser = new \Okta\Applications\AppUser(); $oktaAppUser->setId($oktaUserId); $oktaAppUser->setScope("USER"); $oktaApp = $this->getApplication($oktaApplicationId); $oktaApp->assignUserToApplication($oktaAppUser); ``` This...