ryo88c / globe-api-client
Installs: 17
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=5.5.0
- bear/package: ~1.0
- guzzlehttp/guzzle: ^6.1
- josegonzalez/dotenv: ~2.0
Requires (Dev)
- composer/composer: >=1.0.0-alpha10
- phpmd/phpmd: ~2.3
- phpunit/phpunit: ~4.8
- squizlabs/php_codesniffer: ~2.3
This package is auto-updated.
Last update: 2025-03-07 21:25:10 UTC
README
This is Globe API Client by BEAR.Sunday.
How to use Globe API
- Create account on Globe Labs.
- Create new app at http://developer.globelabs.com.ph/apps/new
- Set Redirect URL as
https://example.com/oauth
- Send from phone number that will be subscribed
INFO
to SHORT CODE of the app. - Upon receipt of the welcome message, the subscriber needs to reply
YES
- After the subscriber replies (
Yes
), theACCESS_TOKEN
and the subscriber’s mobile number will be posted to your Redirect URI
See also: http://www.globelabs.com.ph/docs
Run on console.
$ php bootstrap/api.php post "/smsmessaging?subscriber={subscribed_phone_number}&address={phone_number_of_destination}&message={message}"
Run on the built-in web server.
$ php -S 0.0.0.0:8080 bootstrap/api.php
$ curl -X POST http://localhost:8080/smsmessaging?subscriber={subscribed_phone_number} -d address={phone_number_of_destination} -d message={message}