parse-php-sdk
parse-php-sdk copied to clipboard
The PHP SDK for Parse Platform
### Issue Description When I use php7.4, that works fine. But after migrate to php8, I get this error - `Required parameter $auth_token follows optional parameter $consumer_secret` ### Environment Details...
### Issue Description i have a android app which host on back4app and now i want to show the data of app on my website all data coming from this...
Snyk has created this PR to upgrade @parse/simple-mailgun-adapter from 1.2.0 to 2.0.0. :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify...
The SDKs should be compatible with pinned certificates for connecting to the Parse Servers, allowing for faster, safer deployment, particularly in small or internal deployments.
### Issue Description i'm updating user informations using Parse PHP SDK the connection is 100% correct and established, i'm able to update other classes and everything fine, the problem is,...
### Issue Description Hello, I currently have a use case that requires making 2 conditions in the same field but with different values. However, when using `equalTo(field, value)` and then...
### Issue Description ``` ParseClient::initialize( '...', '...', '...' ); ParseClient::setServerURL('...','...'); ParseClient::setHttpClient(new ParseStreamHttpClient()); http_response_code(200); $health = ParseClient::getServerHealth(); var_dump($health); $user = ParseUser::become("r:471d5035f17c048532c7c8d3c4319102"); var_dump($user); ``` var_dump($health); - is showing: array(2) { ["status"]=> int(200)...
tests for the problem listed here #476
### Issue Description I get "unauthorized: master key is required" error when I try to do aggregate ParseQuery as below. ``` ParseClient::initialize('appId', null, 'masterKey'); ParseClient::setServerURL('https://example.com', 'mountPath'); $pipeline = [ 'group'...
Hi, I have a problem creating new users. Even if I pass `true` within the signUp() call I get an error message. Now I created an user named Admin and...