Download the PHP package opilo/webservice without Composer

On this page you can find all versions of the php package opilo/webservice. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package webservice

Webservice Client for opilo.com panel

Usage

First, install the opilo/webservice package through Composer PHP dependency manager:

composer require opilo/webservice

Note: if you like to know more about composer, please visit https://getcomposer.org/.

After installing the composer package, in order to send and receive SMS via opilo.com panel, you should create an instance object of class OpiloClient\V2\HttpClient. For that, first you need to configure your webservice in the configuration page.

Create a Client Object

Sending SMS

Sending a Single SMS

Sending a Batch of SMS at Once

User defined ids

In case of network errors, you may resend your SMS to be sure it is delivered to the Opilo server, but you don't want it to be sent to the target more than once. To prevent duplicate SMSes you can set unique strings as uid fields of the OutgoingSMS objects. In case of receiving a SMS with a duplicate uid, the Opilo server drops that SMS and return an SMSId object with a boolean duplicate flag. The duplication of a uid is checked only against the messages sent during the last 24 hours.

Parsing The Return Value of sendSMS()

Check the Inbox by Pagination

Checking the Delivery Status of Sent Messages

Getting Your SMS Credit

Exception Handling

All the functions in HttpClient may throw CommunicationException if the credentials or configurations are invalid, or if there is a network or server error. Prepare to catch the exceptions appropriately.

Laravel support

To use web service in Laravel, register OpiloClient\Laravel\OpiloServiceProvider in your config/app.php.

You can also add the facade to use web service more conveniently.

To publish opilo config file, run php artisan vendor:publish --provider="OpiloClient\Laravel\OpiloServiceProvider". Put variables OPILO_WS_USERNAME and OPILO_WS_PASSWORD into your .env file.


All versions of webservice with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.0
guzzlehttp/guzzle Version ~5.3|^6.0.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package opilo/webservice contains the following files

Loading the files please wait ....