fusionauth-php-client icon indicating copy to clipboard operation
fusionauth-php-client copied to clipboard

PHP client library for FusionAuth

Results 10 fusionauth-php-client issues
Sort by recently updated
recently updated
newest added

https://github.com/FusionAuth/fusionauth-php-client/blob/2bf308f50d3e6be8cc64144f7aff311e7b9a1574/src/FusionAuth/FusionAuthClient.php#L4867 It should be ["search" => ["" => ""]]

When there's a read timeout, the response looks something like this: ```php FusionAuth\ClientResponse::__set_state(array( 'errorResponse' => NULL, 'exception' => NULL, 'method' => 'PATCH', 'request' => array ( 'user' => array (...

i added **getenv()** for the testing scripts. also, the composer.json now contains the test-script command, tests can be run by: **composer test** a travis.yml was added for automated unit-testing. The...

The `composer.json` file is missing a `php` version constraint, so it's unclear which versions of PHP are supported by this library. Please add this information.

Currently this library does not support PHP version 8.1.x This has to do with breaking changes with some [deprecations](https://www.php.net/manual/en/migration81.deprecated.php) and [backward incompatible changes](https://www.php.net/manual/en/migration81.incompatible.php) Versions 8.0.x and below **do** work without...

I'm trying to do something like this: ` $request = [ 'loginId' => $hostData->getUser()->getUsername(), 'sendForgotPasswordEmail' => false ]; $response = $this->client->forgotPassword($request);` but library remove params sendForgotPasswordEmail. I found something like...

I am having some issues with configuring. From my docker log I am getting: 2021-02-19 6:31:49.102 AM WARN com.inversoft.configuration.BasePropertiesFileInversoftConfiguration - Your FusionAuth configuration file [/usr/local/fusionauth/fusionauth-app/apache-tomcat/../../config/fusionauth.properties] needs attention. Here are the...

I just added a third tenant and i am seeing this: A 404 status code is returned from the Start Passwordless API when more than one tenant exists in FusionAuth....

According to [the FusionAuth documentation](https://fusionauth.io/docs/v1/tech/apis/groups/#remove-users-from-a-group), there are two ways to remove a user from a group, and both use the URL to pass the request parameters to the FusionAuth API....

I am able to sign in successfully, but fusionAuth isn't signed in. How to sign in with this library and also fusionAuth at the same time? So that all the...