Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ramyhakam/parse-server-curl
This Class is vary helpful To Connect to any set of parse servers on the same time Via curl commends using parse server restful API ,Just use the methods provided to perform most of Parse Server operation the same like PHP SDK operations .This Class is helpful for who want to call more than one parse server on the same time
https://github.com/ramyhakam/parse-server-curl
parse parse-php-sdk parse-restful parse-sdk parse-server
Last synced: 20 days ago
JSON representation
This Class is vary helpful To Connect to any set of parse servers on the same time Via curl commends using parse server restful API ,Just use the methods provided to perform most of Parse Server operation the same like PHP SDK operations .This Class is helpful for who want to call more than one parse server on the same time
- Host: GitHub
- URL: https://github.com/ramyhakam/parse-server-curl
- Owner: RamyHakam
- License: mit
- Created: 2017-04-05T15:26:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-04-26T20:49:20.000Z (over 7 years ago)
- Last Synced: 2024-05-02T04:45:14.444Z (8 months ago)
- Topics: parse, parse-php-sdk, parse-restful, parse-sdk, parse-server
- Language: PHP
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Parse-Server-Curl
Connect to parse server Via curl commends using parse server restful API
# Install Via composer
`composer require zteam-pro/parse-curl`
How to Use it
You must add the parse server config like
1- Parse server app_id
2- Parse server url
3- Master key
4- The query or data paramters to make a query to the parse server
Then you will call any of ParseCurl obejct function to perform the CURL commend and get response back## Create object on parse server
1- app_id=####
2- server_url=https://#########/classes/ClassName
3- Master_key=########################
4- data={"name","########","score"="20"}## Update an object on parse server
1- app_id=####
2- server_url=https://#########/classes/ClassName/objectId
3- Master_key=########################
4- data={"score","30"}## Delete an object from parse server
1- app_id=####
2- server_url=https://#########/classes/ClassName/objectId
3- Master_key=########################
4- data= #Not Required## Perform a Query on parse server
1- app_id=####
2- server_url=https://#########/classes/ClassName
3- Master_key=########################
4- Query=Where:{"objectId","########"}