Download the PHP package imphinite/tencent-cloudcomm without Composer
On this page you can find all versions of the php package imphinite/tencent-cloudcomm. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download imphinite/tencent-cloudcomm
More information about imphinite/tencent-cloudcomm
Files in imphinite/tencent-cloudcomm
Package tencent-cloudcomm
Short Description This is a Laravel package for server-end Tencent Cloud Communications API
License MIT
Informations about the package tencent-cloudcomm
Collection of Tencent Cloud Communication Web Services API Adapter for Laravel 5
Provides convenient way of setting up and making requests to Tencent Cloud Communication Web Services API from Laravel application.
For services documentation, APP key and Usage Limits visit:
- Tencent Cloud Communication Services Documentation
- Tencent Cloud Communication Services APP Key
- Tencent Cloud Communication Services Price and Quota
- Tencent Cloud Communication Services Usage Limit
**SPECIAL THANKS TO Alexpechkarev. Part of web services engine is borrowed from Alexpechkarev/google-maps.
Features
- Account Management
- Send Message
- Push Notifications
- Group Management
- Profile Picture Management
- Chain Relationship Management
- Chat Censor Management
- Data Download
- Online Status
- Global Chat Restriction Management
Dependency
Installation
Issue following command in console:
Alternatively edit composer.json by adding following line and run composer update
Configuration
Register package service provider and facade in 'config/app.php'
Publish configuration file using php artisan vendor:publish --tag=cloudcomm --force
or simply copy package configuration file and paste into config/cloudcomm.php
Open configuration file config/cloudcomm.php
and
- Add your app key
- Add your appication admin identifier
- Add your admin usersig (All of above are obtained from your App in Tencent Cloud Communication Services Console)
If you like to use different admins for any of the services, you can overwrite master admin identifier and usersig by specifying them in the service
array for selected web service.
Usage
Import this package at the top of your file:
Here is an example of making request to Tencent-hosted Account Registration API:
Alternatively parameters can be set using setParamByKey()
method. For deeply nested array use "dot" notation as per example below.
Another example showing request to Get User Status API:
Available methods
load( $serviceName )
setParamByKey( $key, $value )
setParam( $parameters )
get()
load( $serviceName )
- load web service by name
Accepts string as parameter, web service name as specified in configuration file.
Returns reference to it's self.
setParamByKey( $key, $value )
- set request parameter using key:value pair
Accepts two parameters:
key
- body parameter namevalue
- body parameter value
Deeply nested array can use 'dot' notation to assign value.
Returns reference to it's self.
setParam( $parameters )
- set all request parameters at once
Accepts array of parameters
Returns reference to it's self.
get()
- perform web service request (irrespectively to request type POST or GET )
MIT License
Collection of Tencent Cloud Communication Web Services API Adapter for Laravel 5 is released under the MIT License.