Skip to content

jber18/sms_gateway-v2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SMS GATEWAY

For Globe at Home Router

Exact model (ZLT S10G)

download

To Get Started

Make sure to have axios npm installed

To test, you need to connect to globe at home wifi

and run this code after importing everything

    (async () => {

        //login
        const login = new LoginRouter('user', '@l03e1t3') //default password works!
        const responseLogin = await login.initLogin();

        //send sms
        const sms = new Sendmsg('09000000123', 'Hello user');
        const smsReponse = await sms.sendSms();
        console.log(smsReponse)

    })()
    Problem: When sms reaches the router's limit, all incoming messages or sending messages will be ignored by the system
    Status:(Solved)

The purpose of this is to initially create an SMS GATEWAY for making api using only Globe at Home modem without spending much more expensive equipment for sending sms

Releases

No releases published

Packages

No packages published