0

If there is a SMS service that makes a HTTP request, Can we know the HTTP request that sent the message and retrieve it's information ?? url and post headers ?

Adham
  • 63,550
  • 98
  • 229
  • 344
  • Why don't use [WireShark](http://en.wikipedia.org/wiki/Wireshark) ? – Jérôme Boé Aug 04 '12 at 14:43
  • OK, I hope I am asking the right question. what i want is to know what happens when I send sms though a website after entering the user name and password) of course – Adham Aug 04 '12 at 14:46
  • yeah, what browser are you using? In Chrome, just hit F12 then go to the Network tab to view HTTP requests. – Arvin Aug 04 '12 at 16:45
  • @Arvin I have already did this, but no http requests when sending the message!! is it possible to send SMS without a HTTP requests ? – Adham Aug 04 '12 at 16:59

1 Answers1

0

If you know which API is being used, then yes, you can work out everything except the username and password. If you don't know the API or site being used then you have no chance.

As for alternatives to HTTP APIs, yes there are some (e.g. email gateways), but they all still end up with SMPP servers eventually.

Ben
  • 3,981
  • 2
  • 25
  • 34