Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.
When you order goes to backorder, do you get notified via text or email? Or you will only know when you check order status online?
 
I literally cannot check the order status from my phone. Doing the text method yields no results. Going to their garbage website yields a blank page when checking order status. When I click on "full site" since their mobile site is clearly terrible it just stays on the mobile site. AT&T sucks a giant bag of dicks.
 
  • Like
Reactions: KatieMiller
Ordered on 9/9. But ported two numbers, so order showed 9/11. Ordered MB + 128GB. Original Delivery window was 9/23-9/30. They moved it back to 10/14-10/21 about a week ago. Decided to write a program that will notify me when a iPhone becomes available. It worked! I got a Silver + 128GB last night! I like the white casing. Thought I would post the Python code if anyone wants to edit it and try it out. WARNING: Code is horribly written. I am not going to debug it for you, or tell you how to run it. It is for those who know what they are doing.

import urllib, json
import smtplib
import sys
import datetime
import sched, time
import threading

s = sched.scheduler(time.time, time.sleep)

def email(msg):
server = smtplib.SMTP('smtp.gmail.com', 587)
server.starttls()
server.login("EMAIL USERNAME", "PASSWORD")
server.sendmail("FROM ADDRESS", "TO ADDRESS", msg)
server.quit()

found = []
foundstart = None

def find(found, foundstart):

distance = 50

urls = {#"AT&T iPhone 7 Plus - Black 128GB": "http://www.apple.com/shop/retail/pickup-message?parts.0=MN522LL/A&location=84604&cppart=ATT/US",
#"AT&T iPhone 7 Plus - Sliver 128GB": "http://www.apple.com/shop/retail/pickup-message?parts.0=MN532LL/A&location=84604&cppart=ATT/US",
"iWatch Series 2 - Space Gray Aluminum Case with Black Sport Band": "http://www.apple.com/shop/retail/pickup-message?parts.0=MP062LL/A&location=84604"
#"AT&T iPhone 7 - Sliver 128GB": "http://www.apple.com/shop/retail/pickup-message?parts.0=MN9H2LL/A&location=77380&cppart=ATT/US"
}

if foundstart==None or foundstart < (datetime.datetime.now() - datetime.timedelta(hours = 5)):
foundstart = datetime.datetime.now()
found = []

try:
print str(datetime.datetime.now()) + " Working on it..."
for name,url in urls.items():
response = urllib.urlopen(url)
data = json.loads(response.read())
print(data)
for store in data['body']['stores']:
if store['storedistance'] > distance:
continue
for part,details in store['partsAvailability'].items():
if details['pickupDisplay'] != 'unavailable':
msg = "\nFOUND SOMETHING!"
msg += "\n"+ name
msg += "\n" + details['storePickupQuote'] + " (" + str(store['storeDistanceWithUnit']) + ")"
if msg not in found:
found.append(msg)
msg += "\n" + str(datetime.datetime.now())
email(msg)
print msg
except:
print("Unexpected error:", sys.exc_info()[0])
pass

threading.Timer(180.0, find, [found, foundstart]).start()

find(found, foundstart)
 
Ahhhh
 

Attachments

  • image.png
    image.png
    98 KB · Views: 124
Anyone else meeting this message with *6737#
We're sorry. Requested information is currently unavailable. Please try again later
 
  • Like
Reactions: cdh8585
:confused::confused::confused::confused::confused:
Can't wait til I get out of work and can test it out for static noise :confused: Hopefully it will be good, still excited! Have case will travel :)

I'm really getting the itch now. Being a stay at home dad for now really sucks because working get my mind off my toys,
 
  • Like
Reactions: IPGirl1
No change yet today. This happened around 8:17 last night.
They have a MD11 landing around 6 something
[doublepost=1474980417][/doublepost]
There were 2 that arrived early this morning as well, hopefully that leads to some order movement late morning / early afternoon.
Hopefully but I'm not even back ordered:(
 
  • Like
Reactions: blackjackmark
They have a MD11 landing around 6 something
[doublepost=1474980417][/doublepost]
Hopefully but I'm not even back ordered:(

I'm hoping there is some apple product on there as well, those planes in particular flight the route fairly often so they could just be normal UPS legs with various freight.

Im not backorder either and I knocked my phone off the counter this morning and now the bluetooth and 5Ghz wireless band do not work...makes my iWatch pretty flipping useless. I really want my new phone now.
 
I'm hoping there is some apple product on there as well, those planes in particular flight the route fairly often so they could just be normal UPS legs with various freight.

Im not backorder either and I knocked my phone off the counter this morning and now the bluetooth and 5Ghz wireless band do not work...makes my iWatch pretty flipping useless. I really want my new phone now.
I feel your pain
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.