All Projects → kingster → Way2sms Api

kingster / Way2sms Api

Way2sms Unofficial PHP API

Labels

Projects that are alternatives of or similar to Way2sms Api

Mikrotik Hotspot Sms
Stars: ✭ 23 (-67.14%)
Mutual labels:  sms
Nexmo Node Code Snippets
NodeJS code examples for using Nexmo
Stars: ✭ 36 (-48.57%)
Mutual labels:  sms
Smsretrieverapimaster
Automatic SMS Verification with the SMS Retriever API
Stars: ✭ 48 (-31.43%)
Mutual labels:  sms
Textmessage.eth
Send SMS Text Messages within the Ethereum Blockchain - TextMessage.ETH
Stars: ✭ 11 (-84.29%)
Mutual labels:  sms
Android Messages Desktop
Android Messages as a Cross-platform Desktop App
Stars: ✭ 969 (+1284.29%)
Mutual labels:  sms
Silence
PROJECT MOVED: https://git.silence.dev/Silence/Silence-Android/ (GitHub is just a mirror.)
Stars: ✭ 1,019 (+1355.71%)
Mutual labels:  sms
Smsverifycatcher
Android library for phone number verification feature in your app. Automatically copies verification code from SMS right into the app. Made by Stfalcon
Stars: ✭ 788 (+1025.71%)
Mutual labels:  sms
Student Management System
This is a simple web-based student management software written in PHP and Javascript. This was specifically written for school or educational organization.
Stars: ✭ 58 (-17.14%)
Mutual labels:  sms
Authy
Rinvex Authy is a simple wrapper for @Authy TOTP API, the best rated Two-Factor Authentication service for consumers, simplest 2fa Rest API for developers and a strong authentication platform for the enterprise.
Stars: ✭ 34 (-51.43%)
Mutual labels:  sms
Sgdigittextfield
Elegant and Simplest Digit UITextField
Stars: ✭ 47 (-32.86%)
Mutual labels:  sms
Sendsmsviasmppapi
Python code to send SMS via SMPP API for Nagios monitored servers
Stars: ✭ 11 (-84.29%)
Mutual labels:  sms
Zenziva.php
Zenziva - Indonesia Online SMS Gateway Library
Stars: ✭ 33 (-52.86%)
Mutual labels:  sms
Freeipa Password Reset
Self-service password reset app for FreeIPA
Stars: ✭ 44 (-37.14%)
Mutual labels:  sms
Vonage Php Sdk Core
Vonage REST API client for PHP. API support for SMS, Voice, Text-to-Speech, Numbers, Verify (2FA) and more.
Stars: ✭ 849 (+1112.86%)
Mutual labels:  sms
Kavenegar Python
Kavenegar API Client Writen In Python
Stars: ✭ 50 (-28.57%)
Mutual labels:  sms
Number Verifier
Number Verifier is a SMS verification tool that makes it easy to get a disposable SMS number and bypass SMS number verifications on any site.
Stars: ✭ 920 (+1214.29%)
Mutual labels:  sms
Vonage Go Sdk
A lightweight library to help Go users everywhere integrate with the Vonage APIs. Issues and PRs all really welcome!!
Stars: ✭ 38 (-45.71%)
Mutual labels:  sms
Wp Sms
A complete WordPress plugin to send SMS with a high capability.
Stars: ✭ 63 (-10%)
Mutual labels:  sms
Ethmonitoring
Miner monitoring software with different notifications support
Stars: ✭ 53 (-24.29%)
Mutual labels:  sms
Potato Library
Easy to use Utility library for Android
Stars: ✭ 45 (-35.71%)
Mutual labels:  sms

Way2SMS PHP API

Send SMS Via Way2SMS from PHP.

Tested Working with Way2SMS UI Version 4. Supports upto 140 Characters
Way2SMS has added a Captcha Verification. Will update when I can find a workaround
UPDATE: Fully functional again :)

How to Use

Simple Usage
<?php
    include('way2sms-api.php');
    sendWay2SMS ( '9000012345' , 'password' , '987654321' , 'Hello World');   
    sendWay2SMS ( '9000012345' , 'password' , '987654321,9876501234' , 'Hello World');   
?>
Multiple Messages with different content
<?php 
    include('way2sms-api.php');
    $client = new WAY2SMSClient();
    $client->login('username', 'password');
    $client->send('987654321', 'msg1');
    //Add sleep between requests to make this requests more human like! 
    //A blast of request's may mark the ip as spammer and blocking further requests.
    sleep(1);
    $client->send('987654321,9876501234', 'msg2');
    sleep(1);
    $client->logout();
?>

HTTP API

Send SMS just making GET or POST Requests.

Incase u want to use the service from your application then the parameters for ur application would be

http://www.yourdomain.com/sendsms.php?uid=LOGIN_ID&pwd=PASSWORD&phone=XXXXXXXXX,YYYYYYYYY&msg=Hello+World

Parameters
uid = LOGIN_ID ( Your Login ID [either nickname or 10 Digit mobile no] )
pwd = PASSWORD ( Your Login Password )
phone = 10 Digit Mobile number. Incase of multiple numbers then numbers separated by comma (,)
msg = Your Message.

Note

Please use this code on your own risk. The author is no way responsible for the outcome arising out of this.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].