How does Cell Minute Tracker work? - php

It's been a mystery how does Cell Minute Tracker manage to fetch AT&T users data.
Maybe someone here has the long waited answer.
I'm really curious rather they got a confirmation to scrape user’s cellular report
And how they can fire up multiple requests to AT&T site without being banned?
I'm waiting for someone who could shed some light on this mystery
Thanks
link: http://www.uquery.com/apps/311637771-cell-minute-tracker-for-att

From what I can tell the application is running locally on a iPhone, it is using the user created login account, so it is just like the user going to the site, thus no issues.
Internally it would be scraping the site to get the information to display to the user.
Now, given your question who knows if they got confirmation, but the second part of your question in regards to multiple requests is moot, since it is each device contacting, not their server.

It is impossible to know exactly how they're doing it, however my guess is they're requesting your balance and minute usage and just parsing the text message you receive back with that information.
// for at&t
*BAL# for balance on your account
*DATA# for data usage
The text message is free.

How do they do it for Rogers in Canada?
Does Rogers provide a text message with the current SMS and minutes balance?

Related

Track conversation chain from different server sessions to one number

I'm creating an app which will allow all users to initiate conversation with page owner using Chat-to-SMS service.
Problem is that I'm not sure how to track conversations since there would be one conversation chain from SMS Provider <-> page owner. When owner clicks reply, it needs to know which session user it needs to send the message to.
Basically, I need to do opposite what is being explained here: https://www.twilio.com/docs/quickstart/php/sms/tracking-conversations
How should I accomplish this? I can't quite wrap my head around this.
Twilio developer evangelist here.
If you are sending all the chat messages to just one SMS number then there is no easy way to tie replies back to the original message. (As a quick experiment, if you open an SMS conversation in your own phone and try to reply to any message that wasn't the latest one, you'll see it's not possible.)
There are workarounds though.
You could, when forwarding the message, generate an ID for it. Then get your page owner to include that ID when responding to that message, that way you can route the message back to the original sender and strip out the ID.
Alternatively, when replying you could always respond to the last message that came in. This relies on there not being much traffic, allowing the page owner to respond before the next message arrives. This is error prone though.
Another alternative is purchasing a new number for each new conversation. You could expire the number after a predetermined amount of time. This is made much easier with Twilio Proxy, which was announced recently and is currently in preview.
Let me know if that helps at all.

Messenger bot - timed responses

I've built a basic facebook messenger bot with PHP. How do I enable timed push notifications?
For example, here's an appointment booking scenario:
User schedules a meeting for 2pm on Friday
Bot remembers the timed information and at 1:45pm on Friday, the bot sends a message reminding the user of the appointment.
I understand that there's gotta be a database involved, but I'm wondering if someone could point me in the right direction to what functions to use or if there are any docs for this time related pushes with php.
*Note: I'm not looking for free code, but rather a point in the right direction for how to achieve the above.
This is a broad question and has little to do with bots themselves. Think of bot as only a communication protocol between your server and user. As you've mentioned, store user ids/meeting times in a database.
Then have a cron running, calling a link on your server which will check whether should a user be sent a notification now. Then send him a message and mark this action in a database, so it is not handled twice.

How to Automate SMS from PHP mysql at Particular point of Time

I have a website where people will book for Site visits.The Support Executive Confirms Site visit in the previous day. Once the Site visit is confirmed on the day on which site visit should happen the customer should receive SMS in morning telling that you have site visit today as requested.
I have Third party SMS Service
Now I Should Run a Code in PHP, MySQL which sends a SMS in the morning on which the site visit should happen
How can I Do that
Cron -> starts PHP-Script , PHP Script reads records from the SQL Table and checks if an SMS has to be sent, i assume its sms over mail, so you can use the integrated php function to send out mails to the sms gateway. For the guy confirming the visits, create another site with proper authentication where he can access the table and agree with the site-visits and anotherone for the customer to register for site visits
You need a cron job set to run in morning which will call your php file have code for looking in database for customers you need to send sms to.
Yo need to register to sum sms gateway provide 2 good one i know is clickatell and eztexting.
You can get there api for sending sms in there website.
Happy Smsing :D
Set a Cron Jobs in your Control panel.Try this link
http://www.devx.com/DevX/Article/39900/1954
If you would like to try an entirely different approach, check out:
Sent.ly - http://sent.ly
I am the founder of Sent.ly and thought maybe Sent.ly could help you out...
Sent.ly allows you to use an Android phone as an SMS gateway. So... you could just purchase a cheap Android phone ($150 or so) and set up Sent.ly on it and put a SIM in the phone.
By calling the Sent.ly API, the SMS would go out through the SIM in your Android phone. Sent.ly also has the option for scheduling an SMS for sending later which is your use case.
This also allows your PHP application to RECEIVE SMS in addition to just sending it out.
You can setup rules and if an incoming message matches a rule, it would be posted to a PHP page of your choice.
Since I am a great fan of stackoverflow, I would like to invite you to try Sent.ly. We would be happy to set you up with extra credits if you like. Just mail us at support#sent.ly
Cheers,
Varun
I have developed a system like this for use with some of my clients, and you can easily use it to integrate with your website or applications, through HTTP POST or WebServices (using PHP, C# or whatever).
If you are interested just leave an email or other contact information as a reply to this answer and I will gladly send you a sample code of how to send SMS, setting the desired time for sending messages, beyond other things, through our system.
You will not need to have any kind of cron knowledge and setup, it is all handled by our system, and the code is pretty simple and straight forward. You will only need to call our services upon site visit confirmation, setting the desired message sending time, and our system will do the rest.
Best regards.

CPA Download offer leads (php, javascript, html, sql)

I got a download offer that I pay for every finished install,
so the affiliate network gives you a to fire a pixel you can choose postback url (No Cookies) or iframe/img (With Cookies).
so after the download and install i need to http request webpage (postback url or page with iframe/img)
but there is major issue with this, if someone has the pixel or postback url they can charge me for double leads or change ips and charge me once more. So anyone here have a solution for this kind of problem? Any solution will work :)
I just can't think of any, I only have basic programming understanding so anyone who can help me please really need this one.
Thanks!
P.S if you have a bullet proof solution just give me your moneybookers email too and I will donate you some cash for beer ^^ or if you think this something very hard just give me your price.
if you need more information how this tracking works
http://www.hasoffers.com/wiki/Application_Support:Offer_Tracking
You can ban ips after specific time frame lets say "7 days" OR include email verification, or credit card verifiction.

Sending "alert/notification" to cell phone from website

I was wondering if there was a way for a website to send an alert/notification to a cell phone (smart phone, android, iphone... stuff like that) where the notification will ask the user a question and they have to answer the question and the response is sent back to the website and their answer is logged in the database.
I would also like to know if this notification could have checkboxes? I am needing this for a project and would like to know if there is anything out there like this.
If you need more description, please let me know.
Thanks in advance!
Short of building an application for each specific phone to handle this alert, not really.
What I would do if I were you... allow users to subscribe to these alerts. When you send them, send them a link to a mobile web page. Now, keep in mind that most people don't have a data plan, or even know what to do with it. It would be best to allow replies over SMS as well. Without more details about what you are doing, it is hard to give a better answer.
Google around for an SMS Gateway. There are nearly infinite options with various pricing... so you will need to find the one best for you. Alternatively, you can send messages to the SMTP address. For example, 0123456789#vtext.com will send a text message to a Verizon customer with the number of 0123456789. SMS is more reliable though.
C2DM will solve this problem, for newer Android devices.

Categories