Easy way to SMS verify accounts - Take 2

What should be in the file: newsms.php ?
Just blank php file with CHMOD 777?
 
Got it done)))

Guys check this link
Code:
dashboard.46elks.com/sms
- you will receive sms there
 
i had authenticated, but hwo to use the script u gave us? , i edit my id and pass then save it as php and run ? or use any program to execute those script ? thanks alot
 
how to receive voicecall ?can some one code it? and where to download the voice call?
I have test this script and it work but it can just use to verify gmail account and can not use to verify facebook account using sms so I hope some one can help to code the get voicecall script so I can try use voice message to verify fb account.
 
Can I receive voice calls? Because in my country gmail works for voice calls only
 
is this right?

"country=se&sms_url=localhost/sms.php"

and then localhost/sms.php and the page is blank..

how make to allocate a new mobile phone number? please!

go to: /a1/Numbers and i can download a file, it say.. {"numbers": []}
 
Last edited:
^ If it's executing the script from the testing server, then make sure you've got php installed..

p.s Tried this with FB..seems that the SMS are not to be received at the given number.
 
PHP:
<?php
    $url = "https://api.46elks.com/a1/Numbers";
    $postFields = "country=se";

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_USERPWD, "ua43fee3cbec0f0a***:D09FDF5E61B741***");
    curl_setopt($ch, CURLOPT_POSTFIELDS, $postFields);
    $xmlResponse = curl_exec($ch);

    print $xmlResponse;
?>
I used this in localhost but I always get a blank page! is there anything wronge?

Double-check the code if it comes directly from clipboard...might have messed up the characters..

and you wouldn't want to skip this line
$postFields = "country=se&sms_url=http://domain.com/newsms.php";
 
Last edited:
Back
Top