-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAppleTweets2.csv
We can't make this file beautiful and searchable because it's too large.
5187 lines (4385 loc) · 735 KB
/
AppleTweets2.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
User,Date Created,Tweets
Stevelee987,2023-02-28 23:58:45+00:00,@AppleSupport any tips to stop my iPhone 13 Pro from trying to go into macro mode on the telephoto camera? It just won’t focus and drives me insane 😡 https://t.co/B6o2ebAnC8
AppleSupport,2023-02-28 23:57:11+00:00,@tejbirbedi Thanks for tagging us! We’d be happy to assist with your Mac today. Send us a DM to get started. https://t.co/GDrqU22YpT
AppleSupport,2023-02-28 23:51:56+00:00,"@TheJShield We can help look into this with you. To help us get a better understanding, let us know in DM which device you have the Beats paired with. We’ll meet you there. https://t.co/GDrqU22YpT"
theITrebel,2023-02-28 23:48:47+00:00,@samuel_clements @JonesyChris This is exactly what I’m seeing with using 8.8.8.8 and no VPN. Clearly it’s a problem for many that @AppleSupport needs to fix. https://t.co/eD8rEYmkdh
AppleSupport,2023-02-28 23:45:55+00:00,@Mikeperezc We can help look into what’s happening with your iPhone. Send us a DM. We’ll meet you there to gather more details. https://t.co/GDrqU22YpT
TheJShield,2023-02-28 23:43:57+00:00,"There is nothing more annoying than the static white noise in my right @beatsbydre Studio Bud whenever I turn on Noise Cancelling mode
How can I fix this @AppleSupport?"
AppleSupport,2023-02-28 23:38:48+00:00,"@_ilas_aiban Thanks for reaching out!
If there’s features you’d like to see added to iOS, we can recommend leaving feedback here: https://t.co/ap3ASkCfXe https://t.co/GDrqU22YpT"
AppleSupport,2023-02-28 23:36:25+00:00,@krysticoll We have received your DM and will continue from there.
A_olawale1,2023-02-28 23:34:11+00:00,"@MrRobiiin @AppleSupport Tell the person to log out/in of phones Apple ID. It will work, had similar issues previously.
By the way I need a slot also"
Mikeperezc,2023-02-28 23:34:09+00:00,@kunaldudhalkar @Apple @AppleSupport Have they fix it?? I got the same issue 🤬🤯 https://t.co/kdKVDofKyo
mora_hlc,2023-02-28 23:26:44+00:00,"@AppleSupport The apple support account is not allowing me to send DMs. My mac doesn't show an alert. I have to plug it in to turn it on once it shuts down, and it first shows the battery to be empty but after a while the battery symbol indicates 57%"
krysticoll,2023-02-28 23:24:37+00:00,"Hey @Apple @AppleSupport , I have an apple 13 pro and was working perfectly until last night after the new update. Now I can’t open the camera to take videos or photos because the phone overheats and the camera/video won’t focus 😡."
AppleSupport,2023-02-28 23:24:02+00:00,"@beautysheis570 We want to help with your AirPods. Does this happen when you connect them to a different device? If so, try resetting them with the steps here: https://t.co/bHKySjdt6W
Send us a DM, so we can work together on a solution. https://t.co/GDrqU22YpT"
AppleSupport,2023-02-28 23:23:39+00:00,"@Jpmillernerd We assure you we can provide some information on Find My issues. First, if you feel your Apple ID has been compromised, be sure to reset the password and follow this article - https://t.co/tBGVwonw83 Let us know in DM if you run into an issue. https://t.co/GDrqU23wfr"
beautysheis570,2023-02-28 23:13:04+00:00,@AppleSupport Both AirPods work but only one plays at a time. How can I resolve?
AppleSupport,2023-02-28 23:06:38+00:00,"@mora_hlc Got it. To continue narrowing this down, when you start your Mac back up again, does it show an alert similar to your Mac restarted because of a problem? Like this alert: https://t.co/7QIWlWAkIE
Try to DM to let us know, and we’ll meet you there. https://t.co/GDrqU22YpT"
AppleSupport,2023-02-28 23:02:37+00:00,"@charliecange We’d like to understand more about the issue you mention. Please follow the link to DM us what exactly is wrong that is considered broken, and we’ll take a further look. https://t.co/GDrqU22YpT"
AppleSupport,2023-02-28 22:59:15+00:00,"@bmclyne Hi, thanks for reaching out to us about your Apple Watch. We are happy to look into this with you. Does the issue persist after a standard restart of the device? While this is a simple step it may help with odd issues that come up. DM if the issue persists. https://t.co/GDrqU22YpT"
mora_hlc,2023-02-28 22:54:59+00:00,@AppleSupport I'm trying to send a DM but it is not letting me. I'm not using a specific app when this happens. The macbook is using macOS ventura 13.2.1
AppleSupport,2023-02-28 22:53:21+00:00,"@Mr_Fabo_ We want both your AirPods charging as expected and we’d like to help. Does the issue persist after a reset? https://t.co/bHKySjdt6W
If so, DM us with which device you use with your AirPods and the software version it’s running. We’ll take a closer look: https://t.co/GDrqU22YpT"
AppleSupport,2023-02-28 22:40:43+00:00,"@dougbreezy315 That’s not the experience we wish for you to have with your iPhone. We’re happy to investigate further with you. To get started, meet us in DM and verify the specific iOS software installed according to Settings > General > About and the apps affected: https://t.co/GDrqU22YpT"
AdilHindistan,2023-02-28 22:33:39+00:00,"I own the stock and the car but I must say it, I am worried about @tesla A great product does not make a great company, you also need great customer service like @AppleSupport"
AppleSupport,2023-02-28 22:28:19+00:00,"@juuuknows We’ll do all we can to help. To help us get a better understanding, are the AirPods offline, or are they not appearing at all within Find My? Let us know in DM. https://t.co/GDrqU22YpT"
AppleSupport,2023-02-28 22:27:12+00:00,@Tall_Curves We’d love to help you figure this out. Follow the steps in https://t.co/Udf3mWoKiY to identify what you were charged for. Have more questions on those charges? Contact our team that can investigate further using the link at the bottom of that page.
AppleSupport,2023-02-28 22:21:49+00:00,"@monicadsan We can help with your iPhone. Do you already have the latest iOS and App Store updates installed?
Please send us a Direct Message for more help: https://t.co/GDrqU22YpT"
hibrandonantony,2023-02-28 22:05:57+00:00,people can’t see me from my iphone 14 pro max. they only see “connecting” and i only see this shit. fix this crap. @AppleSupport https://t.co/BQKee8XC9C
hibrandonantony,2023-02-28 22:01:51+00:00,i just want to disable the shit all together and regain a pleasant user experience. @AppleSupport
hibrandonantony,2023-02-28 22:01:51+00:00,"if a call drops, i have to wait anywhere between 1-30+ minutes to call the person back because my devices will still think i’m on an active call.
if i actually try to shareplay, it’s roughly a 20% chance of it working as expected. @AppleSupport"
hibrandonantony,2023-02-28 22:01:50+00:00,"hey, @AppleSupport. i’d very much appreciate the option to disable shareplay.
since it’s debut, it has made the facetime experience so poor and makes something as simple as watching tv a pain. i can’t do anything without it asking if i want to shareplay."
AppleSupport,2023-02-28 21:59:10+00:00,"@MikeDavidCool We do’t like to hear that your AirPods are missing. Steps that can help you locate them can be found on this article: https://t.co/BzrpmBKUhQ If you need further help, let us know in DM and we’ll do what we can. https://t.co/GDrqU22YpT"
AppleSupport,2023-02-28 21:52:01+00:00,"@KevinTh40948839 We’d like to take a further look into this. Check iCloud from a browser and let us know if the contacts appear in iCloud, and you can DM us your answer here: https://t.co/GDrqU22YpT"
AppleSupport,2023-02-28 21:48:17+00:00,@pricflair We want to help as much as possible. Send us a DM so we can work together on a solution. https://t.co/GDrqU22YpT
AppleSupport,2023-02-28 21:47:16+00:00,"@amarkum68044062 Hey, we see you would like a specific feature. We can point you in the right direction. If that’s something you would like to see in the future, please provide feedback using the following link: https://t.co/eTPVYVFyd8"
ONELONEDOLPHIN,2023-02-28 21:45:06+00:00,"@AppleSupport there’s an egregious problem/w @alaskausafcu ‘s app choosing to target #disabled members w/unrealistic demands that we TEXT during login
THIS VIOLATES #ADAlaw
SEVERAL months ago AKUSAFCU was ASKED to create a way we can #OptOut
WHY hasn’t it been fixed by now? https://t.co/hcRbiejVEm"
amarkum68044062,2023-02-28 21:43:25+00:00,@AppleSupport hello dear sir/madam i have a great change for new updation in iphone desingn i know it is weard but guve a chance to explain the change or give email so that i can share that thing with them it’s humble request
AppleSupport,2023-02-28 21:40:30+00:00,@spawnsteryvr Thanks for reaching out to us. We'd like to help you and look into this further. Please DM us what iPhone model are you using and which iOS version it is running to continue working on this. https://t.co/GDrqU22YpT
Altavistagoogle,2023-02-28 21:33:22+00:00,@TheJohnWilliams @AppleSupport Probably related. Seems to work now.
spawnsteryvr,2023-02-28 21:32:33+00:00,@AppleSupport How can I book an appointment online for Genius Bar? Going around in circles on your website without getting where I want to go. Used to be very easy to do this. Now not so much. 2/2
shouldhateu,2023-02-28 21:32:24+00:00,@AppleSupport thanks so much🙏🏼🙏🏼
AppleSupport,2023-02-28 21:30:38+00:00,"@wilIyoucry Hey there! We’re happy to help with your AirPods. Try the troubleshooting steps listed in this support article: https://t.co/mVd37zPp6r
Then meet us in DM with the results using the link below. https://t.co/GDrqU22YpT"
spawnsteryvr,2023-02-28 21:30:06+00:00,@AppleSupport anytime I pug in my EarPods or AirPods this pops up. These songs are no longer on my phone and no matter what I do I can’t stop this from appearing. How do I get it to stop? 1/2 https://t.co/vDHOotJwgO
svenasol,2023-02-28 21:27:32+00:00,@PatrickHeneise @AppleSupport Oh my.... That's pretty horrible.
TheJohnWilliams,2023-02-28 21:25:20+00:00,"@Altavistagoogle @AppleSupport I was able to get 1 game to play, but it isn't 3 hours long video. Instead it was only 90 mins showing only the game. I suspect the links in the app are linking to a video (game day broadcast) that doesn't exist anymore as they probably should've been replaced by game only video https://t.co/GRuFkUaDF5"
AbdulSa41217987,2023-02-28 21:23:02+00:00,"@AppleSupport Apple wallet is thief, stolen my $3000 , apple wallet is the biggest fraudulent app in the human history"
TheJohnWilliams,2023-02-28 21:21:31+00:00,"@Altavistagoogle @AppleSupport I have a season pass subscription. I suspect there's a problem on the backend since all other videos except full game replays work on the platform. If I had to guess, the link to the full game replays are bad. It looks like it's not the full broadcast that was shown on game days"
KleoMusicUK,2023-02-28 21:19:58+00:00,@AppleSupport Thanks very much. I've checked out your reply 😀
racsiv27,2023-02-28 21:16:50+00:00,@AppleSupport anyone else iPhone not charge last night?
AppleSupport,2023-02-28 21:14:51+00:00,"@bwaybaby91 We’re here to help! To help isolate the behavior, can you test to see if the MagSafe charger works with a different device? Let us know in DM to continue. https://t.co/GDrqU22YpT"
AppleSupport,2023-02-28 21:12:06+00:00,"@KleoMusicUK Absolutely! We received your DM, look for our reply there."
AppleSupport,2023-02-28 21:10:21+00:00,"@PatrickHeneise We want to help with Photos. Make sure you have covered the steps in this resource which is geared towards your issue: https://t.co/74DrctGkaK
Send us a DM if you still need help, so we can work together on a solution. https://t.co/GDrqU22YpT"
AppleSupport,2023-02-28 21:07:21+00:00,"@MohaHumud We know that battery life is important, and we’d be happy to help. DM us and let us know if you’re referring to the iPhone 14 or the iPhone 13 that is having the issue. Please include which version of software you’re using as well. https://t.co/GDrqU22YpT"
MrRobiiin,2023-02-28 21:05:26+00:00,@AppleSupport Waiting for you there :)
KleoMusicUK,2023-02-28 21:03:19+00:00,"@AppleSupport Hi there,
I've just sent you a DM.
Thanks,
Kleocharis"
PatrickHeneise,2023-02-28 21:02:12+00:00,Seems like Photos App deleted my entire shared library. 14k photos. Nothing to be found in deleted items. No recovery options either 😱 @AppleSupport
AppleSupport,2023-02-28 21:02:05+00:00,"@Refone10 We’d like to help look into this. To help us get a better understanding, let us know in DM exactly what you’re seeing on the iPhone screen. For example, is the iPhone disabled, or something else? https://t.co/GDrqU22YpT"
AppleSupport,2023-02-28 21:00:05+00:00,"@seriqiqi We’re happy to investigate this concern with you. On which device are you using Markup, in which app, and on what type of file? Does this affect all files or only specific ones? Let us know in DM to continue: https://t.co/GDrqU22YpT"
MohaHumud,2023-02-28 20:59:42+00:00,"@AppleSupport Hi, I recently purchased an iPhone 14 pro max through apple store - less than a month. What is unusual and i had an iPhone 13 pro max is that battery already started degrading and I am feeling disappointed. I had it shipped to Saudi Arabia so"
AppleSupport,2023-02-28 20:56:57+00:00,"@god_munky We’d like to help. You are able to activate the screen saver immediately on your Apple TV and enjoy our spectacular screen savers whenever you’d like. Learn how to do that here: https://t.co/rcml0jQIMD For more help, meet us in DM. https://t.co/GDrqU22YpT"
AppleSupport,2023-02-28 20:50:57+00:00,"@mora_hlc We’d like to learn more about this issue you’re having with your new MacBook Air. Are you using a specific app when this occurs? Send us a DM with your macOS version, and we’ll look into this together. https://t.co/GDrqU22YpT"
AppleSupport,2023-02-28 20:50:04+00:00,"@nxlle0 We’re confident we can help!
Have you checked both your device and iCloud storage? The following page may help:
DM us with questions or if you need further assistance. https://t.co/GDrqU22YpT"
kcrusher,2023-02-28 20:50:00+00:00,"@AppleSupport Can you or can you not create a bootable installer on an M1 Mac? Should be simple enough to answer and provide instructions. I'm at a loss here - there are hundreds of posts about this issue, yet no resolution, even on Apple forums. Quick deploys are critical for IT."
techiesaarthak,2023-02-28 20:47:58+00:00,"The only regret i have after switching to iPhone is lack of tap to pay feature (in india).
Come on apple, its high time now!
@Apple @tim_cook @AppleSupport"
AppleSupport,2023-02-28 20:47:56+00:00,@KBittermanGross You’re welcome! We have received your DM and will respond to you there.
kcrusher,2023-02-28 20:46:32+00:00,"@AppleSupport Whatever happened to accountability? When I worked at Avid, if you took the call, you took the case and saw it all the way through. You couldn't pass the buck without also being held accountable for it's resolution."
AppleSupport,2023-02-28 20:44:26+00:00,"@x3er We’d like to learn more about this issue you’re having with Freeform. What happens when you try to share a new document? Are you receiving any specific error messages? Send us a DM, and we’ll look into this together. https://t.co/GDrqU22YpT"
god_munky,2023-02-28 20:42:13+00:00,@AppleSupport @tim_cook AppleTv has some of the most beautiful screen savers I have ever seen any way to port them over to my Mac or just watch them at my leisure? @AppleTV
mora_hlc,2023-02-28 20:41:46+00:00,"@AppleSupport Just bought an Macbook air 2020 and it has shut down 2 times like it has run out of battery but when I plug it, the battery appears to be at 57%"
KBittermanGross,2023-02-28 20:39:44+00:00,@AppleSupport Thanks
AppleSupport,2023-02-28 20:35:10+00:00,"@MrRobiiin We’d like to take a further look into this, and help find the solution. Please DM us what message they see when attempting to view Apple Music, and we’ll get started there. https://t.co/GDrqU22YpT"
AppleSupport,2023-02-28 20:32:25+00:00,"@Guenter_AfD In this case, you’ll want to select the appropriate device and provide the feedback there. Here’s a quick link to the iPhone feedback page: https://t.co/O0Ad5McAEB
If you’d like to discuss this further, send us a DM. We’ll take it from there. https://t.co/GDrqU22YpT"
King_Cole91,2023-02-28 20:32:18+00:00,@AppleSupport are terrible it’s so ridiculous that they don’t help with recovery key these thieving people just want you to spend money and your time on going back and forth by saying without the recovery key they can’t help even android is better than them
King_Cole91,2023-02-28 20:31:23+00:00,@Apple @AppleSupport are terrible it’s so ridiculous that they don’t help with recovery key these thieving people just want you to spend money and your time on going back and forth by saying without the recovery key they can’t help even android is better than them
x3er,2023-02-28 20:29:20+00:00,@AppleSupport why is Freeform not listed on this page? Sharing of new documents is down for me (existing shares still work). https://t.co/pa6CcmivIb
AppleSupport,2023-02-28 20:23:47+00:00,"@DrTigger We appreciate you reaching out to us about this, and we’d be happy to see how we can help. Please meet us in DM and we’ll continue working from there. https://t.co/GDrqU22YpT"
AppleSupport,2023-02-28 20:21:09+00:00,"@onikamine We want to ensure that you can enjoy your new iPhone so let’s look into this together to see what’s going on. Please join us in Direct Message and let us know what iOS version is installed as well as more details about what’s up. This way, we can best provide help. https://t.co/GDrqU22YpT"
AppleSupport,2023-02-28 20:21:02+00:00,"@MazidulZaman We’d like to learn more about your issue. Does this issue with the keyboard only occur on this website? Which app are you using? Send us a DM, and we’ll look into this together. https://t.co/GDrqU22YpT"
MrRobiiin,2023-02-28 20:18:17+00:00,@AppleSupport I added a new member to my apple one “ family “. We can’t make him access to my Apple Music subscription .. is there a delay ? We already followed the Apple Support website’s process #Help
AppleSupport,2023-02-28 20:18:17+00:00,"@MissLagostin Hi there. We’ll be glad to help you out with Apple Music. To start, let us know what happens when you try to use the service. Let us know in a DM and we’ll help further from there: https://t.co/GDrqU22YpT"
Guenter_AfD,2023-02-28 20:17:23+00:00,@AppleSupport But I can't find any remotely useful information about my problem
AppleSupport,2023-02-28 20:15:24+00:00,"@Sean_M_Allen Allow us to help out. It could be a phishing attempt. We’d recommend using the following for help with identifying these attempts: https://t.co/U9IFKYxXFa
Have additional questions? Send us a DM. https://t.co/GDrqU22YpT"
AppleSupport,2023-02-28 20:14:23+00:00,"@KBittermanGross If you’re looking for assistance, we’re here for you! While we may need to focus our attention on a single issue at a time, we’re happy to assist with any and all concerns you may have.
Let us know what you need help with in DM, we’ll work together from there. https://t.co/GDrqU22YpT"
DrTigger,2023-02-28 20:09:39+00:00,"@AppleSupport So why are the claims of apps constantly refreshing, Twitter, Truth, Safari, and Apple apps & others not being addressed. Plenty of complaints on Apple support. It all started with iOS 16"
MazidulZaman,2023-02-28 20:09:29+00:00,"@Apple @AppleSupport what is going, now, how can I type anything? I need to replace this iPhone. #iPhone #iphone12 https://t.co/5WcYKy8elL"
AppleSupport,2023-02-28 20:07:38+00:00,"@Guenter_AfD We’re here to help. While some controls can be rearranged in the Control Center, this is not supported for the display brightness: https://t.co/pUMiioGuj6
Feel free to share feedback here: https://t.co/eTPVYVFyd8"
AppleSupport,2023-02-28 20:03:16+00:00,"@ShahabZargari We understand the importance of opening your files. We’ll help however we can. Check out the information provided at https://t.co/o2OyuZLwEa If you’ve confirmed the file type is compatible with QuickTime and isn’t working, let us know in DM. https://t.co/GDrqU22YpT"
borjacajal,2023-02-28 19:57:26+00:00,There you go. So you can see #apple @Apple @AppleSupport @9to5mac @zollotech #bug #macos #ventura https://t.co/kdE2T5yobn
borjacajal,2023-02-28 19:56:23+00:00,"(2/2) I’m the #1 in the world to notice this bug.
#Apple #bug #macOS #Ventura @Apple @AppleSupport @zollotech @9to5mac #macbookpro #m2pro #applesilicon"
onikamine,2023-02-28 19:56:14+00:00,"Brand new iPhone 14 pro
Notification bar is shaky
Screen is shaky when rebooted
Ear speaker sometimes sounds like a box
Video is delayed before even recording !
What’s going on ??????
#apple #iphone #help #software @Apple @AppleSupport"
KBittermanGross,2023-02-28 19:55:33+00:00,@AppleSupport Apple default support page does no allow cross-device requests.
borjacajal,2023-02-28 19:54:43+00:00,@Apple @AppleSupport #Apple has a software bug on macOS Ventura 13.2.1. The battery indicator has a black dot on it. Apple sent me 3 different MacBook Pros 14 inch without them knowing what the problem was. After taking a screenshot I knew it was a software bug. Seems like (1/2)
Guenter_AfD,2023-02-28 19:54:38+00:00,"@AppleSupport Hello, I wanted to ask how I can bring the brightness setting and the volume setting to the other side, i.e. from left to right https://t.co/xyM91rHNvI"
siteexperts,2023-02-28 19:53:21+00:00,@BMWUSA @sprinkles19025 @BMW @BMWGroup @Apple @AppleSupport Any update. Just got the car. This is a huge safety issue as when the map goes haywire it draws your attention as you attempt to figure out where you are and what is going on - especially as it keeps voicing bad directions. Want to send the car back.
Rahul18876252,2023-02-28 19:44:56+00:00,"@startrack @Apple @AppleSupport
When @startrack will pickup my return order from Plumpton Marketplace Newsagency so that I can get my refund quick?
Its been a week now no action is taken from your end!!!"
AppleSupport,2023-02-28 19:41:06+00:00,@Tamarastampone You’re most welcome!
RedSlingerNYC,2023-02-28 19:39:16+00:00,"@AppleSupport aren't all websites/apps that use #SignUpWithApple supposed to have a ""Log in with Apple"" option too? @MyFitnessPal seems to have missed the memo on their website."
weirdviir,2023-02-28 19:34:54+00:00,"Hey @Apple, extremely disappointed with your service in India! Been trying to get my phone fixed for weeks but no luck. And to top it off, my warranty is ending today! What gives?
@AppleSupport"
Altavistagoogle,2023-02-28 19:34:50+00:00,@TheJohnWilliams @AppleSupport Working again on Apple TV HD.
AppleSupport,2023-02-28 19:34:35+00:00,@Tamarastampone Great! Please feel free to reach out to us again if you need any more help. We’re available every day to answer your questions from 5 a.m.-8 p.m. Pacific. Have a great day!
Altavistagoogle,2023-02-28 19:33:17+00:00,@TheJohnWilliams @AppleSupport I got an error message on the web but it is actually working there once you tap OK. https://t.co/HcRkYXrh8F
AppleSupport,2023-02-28 19:29:20+00:00,@shankfrank We’d like to help and learn more. Please DM us if restarting your iPhone helps to hear through the receiver. This information will help us determine the next step on how to proceed. https://t.co/GDrqU22YpT
SidMercutio,2023-03-01 23:59:56+00:00,@itsdeepak_sr @AppleSupport @Apple kindly?...who? lol
Josealbertoxo,2023-03-01 23:59:14+00:00,"I demand an emoji from each planet what happens to you, we are in 2013 or that @AppleSupport"
AppleSupport,2023-03-01 23:56:38+00:00,@I_am_AVi_Ma Hello again! We’d like to continue to assist with these issues that you are experiencing. Join us back in DM and we’ll work with you there. https://t.co/GDrqU22YpT
parksachusetts,2023-03-01 23:55:58+00:00,"Thanks for the prompt reply @AppleSupport, but that seems silly. Many, many parents I know purchase an #AppleWatch for their kids to keep in contact during school weeks, but we end up getting recycled numbers and loads of junk texts. Seems like an easy fix to implement."
AppleSupport,2023-03-01 23:52:48+00:00,"@parksachusetts We’re here to help. While this isn’t supported on Apple Watch, we value your feedback. To ensure it reaches the appropriate team, share your thoughts here: https://t.co/eTPVYVFyd8"
WhiteChinese33,2023-03-01 23:51:34+00:00,@AppleSupport I was wondering if I'm the only one having issues with Apple Maps especially with CarPlay. After I use Siri with the address the map pops up for half a second and then disappears until you hit the map app again #AppleMaps
AppleSupport,2023-03-01 23:50:52+00:00,@timmer357 Hi there. We are happy to help. Can you please reply to us in DM with your device’s model and exact software version? This will help us determine how to proceed. Also this article has helpful tips if Siri is not working properly: https://t.co/tblCftNshf https://t.co/GDrqU22YpT
parksachusetts,2023-03-01 23:46:54+00:00,"Hey @Apple @AppleSupport - how come I can ‘Delete and report junk’ messages only my iPhone? My kids each have an #AppleWatch and get spam texts, but I can only delete - not mark as junk?"
timmer357,2023-03-01 23:40:55+00:00,@AppleSupport Siri via car play is essentially unusual since last update. In all three of my cars so it’s not the vehicle. I have to say huge continuous sentences so it doesn’t stop and get its wrong 100% of the time. Garbage
AStopthemadness,2023-03-01 23:38:39+00:00,@johnrich My phone started dying everyday after this ridiculous update. This should be optional and not turned on by default. I turned it off and like magic my phone charges when I need it to not when and if the sun shines or the wind blows. @AppleSupport
plumbeing,2023-03-01 23:35:14+00:00,@JoeS3678 @Apple @AppleSupport @MKBHD @LewLater @LinusTech @YouTube Literally been doing it for ages and nothing is done each update 😡😡😡
nowyre,2023-03-01 23:30:31+00:00,@AlvaroMorte_IND @bendingspoons @Apple @AppStore @AppleSupport @focosapp Same thing happened to me. What’s the new strategy? $3.99 a WEEK and locking up all former functionality seems like a violation of terms of service.
AppleSupport,2023-03-01 23:24:30+00:00,"@FanArtWolf We’re here to help! The steps in this article can help resolve situations where your iPhone does not start up or has a black screen: https://t.co/bCcnzJAWMC
Meet us in DM if you need more help. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-01 23:20:20+00:00,@courtlouise19x Hi there. We are happy to help. Can you please reply to us in DM with your device’s model and software version? This will help us determine how to proceed. https://t.co/GDrqU22YpT
AppleSupport,2023-03-01 23:18:30+00:00,"@miguelvelasqz We want to help. We don’t see any outages at: https://t.co/waNYZdXpJm
Have you tried restarting your iPhone to refresh the Wallet app? Let us know in DM so we can work on a solution together. https://t.co/GDrqU22YpT"
FanArtWolf,2023-03-01 23:16:05+00:00,Is anyone else having issues with their iPhone today? My screen keeps going black and resetting my phone?… @AppleSupport
AppleSupport,2023-03-01 23:12:14+00:00,"@lookingforavisa We understand that your iPhone will not power on. We’d like to point you towards a resolution. Get started by following the guidance listed here: https://t.co/bCcnzJAWMC
DM us if the issue persists. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-01 23:11:35+00:00,"@thekathanpatel We’ll help as best we can! If it’s an iPhone, review the following article. Included is a section with steps to report the weather in your location if it doesn’t match what’s shown in the Weather app: https://t.co/OqRFs5gCBT
Send a DM for more help. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-01 23:09:00+00:00,"@wauzipoo We can help. After your refund is approved, the time it takes to see the funds will vary based on the payment type that was used. There’s more info here: https://t.co/6k1OBRFUV5
Questions? Partner with our billing team at this link: https://t.co/IBIY3vMgPj"
miguelvelasqz,2023-03-01 23:08:42+00:00,@AppleSupport any news when this is going to be back online? https://t.co/iUd0AaQqSU
AppleSupport,2023-03-01 23:02:33+00:00,"@gldoorii We’d like to look at this further. Please DM us which iOS version you’re on, and how long this has been an issue, and we’ll get started. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-01 23:02:18+00:00,@TheMamaJenJen Hi there. We’d like to learn more to see how we can help. Which iPhone do you have and which iOS version is listed in Settings > General > About? Is this only happening with one specific email account? Are you seeing any errors when you send these emails? DM us: https://t.co/GDrqU22YpT
wauzipoo,2023-03-01 22:57:30+00:00,@AppleSupport @CashSupport still haven’t received my refund of almost 13$
EisenbahnerSH,2023-03-01 22:56:10+00:00,"@SFCCM Hello @AppleSupport, I‘m missing the Cable Car Emoji 😢
You guys need to fix this. https://t.co/WZGA2C2Iij"
notthetivanshow,2023-03-01 22:52:11+00:00,@AppleSupport maybe i can pay to call them? on someplace online
notthetivanshow,2023-03-01 22:51:43+00:00,@AppleSupport i would love to but i live in morocco none of the countries in that list are even remotely close to where i am. Is there anything else i can do?
gldoorii,2023-03-01 22:48:47+00:00,"@AppleSupport I’m subscribed to Apple One family that should include Apple Arcade, but it does not. How do I enable it? https://t.co/HidGUPtU7e"
AppleSupport,2023-03-01 22:48:28+00:00,"@JT_FINNasty We’d like to help. It looks like the size before it opens fully after touching. Let’s look into this further, please follow the link to DM us which iOS version you’re on. https://t.co/GDrqU22YpT"
bigmike_ak,2023-03-01 22:40:53+00:00,"@AppleSupport OK Apple, when did it change that after you type out a search term or phrase, that it won’t search until you click a space between what you typed & cursor. It didn’t do that until very recently. And it’s annoying to no end. Please fix it & put it back. #soannoying https://t.co/u2XEnBpLVF"
JT_FINNasty,2023-03-01 22:38:09+00:00,"Hey @AppleSupport, why is my phone icon suddenly larger than the rest??? https://t.co/xDKJwnxMVp"
AppleSupport,2023-03-01 22:34:11+00:00,"@notthetivanshow Thanks for letting us know! For this, we recommend calling our Apple ID experts instead. Here’s a list of phone support numbers, by region: https://t.co/7sZJAkpB4k
Let us know if you have other questions. Take care!"
mikeredes,2023-03-01 22:28:02+00:00,@AppleSupport @Apple your mail client is shit
AppleSupport,2023-03-01 22:26:30+00:00,"@She_SuckaFREE It’s important to us that you’re able to depend on your iPhone when taking multiple calls, and we’re here to help.
Try the steps outlined on the following page: https://t.co/ONMchIQbzk
If you have questions or need more help, DM us. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-01 22:24:55+00:00,@dbowthegreat You’ve come to the right place. We’re here for you and want to do all we can to help you. Please meet us in DM to check your service and warranty options. https://t.co/GDrqU22YpT
CoffeeCat086,2023-03-01 22:17:52+00:00,"@AppleSupport Also, it is marked as do not include in the settings for the dock"
bhanusoi,2023-03-01 22:17:05+00:00,Why No One is talking about 5G on Cellular iPads in India When will @AppleSupport Enable it or they are Lacking support from Indian Carriers @airtelindia @reliancejio #Airtel5GPlus #JioTrue5G @gauravh1 @varunkrish @nawabnabeel #MWC2023 #5G
AppleSupport,2023-03-01 22:15:55+00:00,"@notthetivanshow We’re happy to help and to get you pointed in the right direction to get help with your Apple ID. Reach out to our support team here: https://t.co/NpQJidgpDA If you need more help and find a way to reach us in DM, we can continue from there. https://t.co/GDrqU22YpT"
BruceQBurke,2023-03-01 22:13:42+00:00,Pretty sad showing from the @AppleSupport “senior advisors” I spoke with today. I had to go through 4 of them before one of them could discern what the engineers were looking for from their requests @tim_cook First ones had me looking for “Settings” in the Apple TV remote app 🧵
frenchie_lee,2023-03-01 22:13:30+00:00,"@AppleSupport I sent a DM, waiting on a response"
AppleSupport,2023-03-01 22:11:44+00:00,"@SergioA29577654 We want to help with your Safari question. Safari is the Apple designed web browser. You can read more here: https://t.co/kml4OPeYi7
Send us a DM if you still need help, so we can work together on a solution. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-01 22:08:54+00:00,"@SADSIL3NCE We’re happy to help! If you haven’t yet, try restarting your iPhone and attempt adding the pass once more.
Follow this article for steps to restart your iPhone, as this can help resolve the issue - https://t.co/NIfrC93f39
For more help, meet us in DM. https://t.co/GDrqU22YpT"
notthetivanshow,2023-03-01 22:06:33+00:00,@AppleSupport i have 2factor auth and i can even show you my id card and anything you might possibly need. i tried everything and nothing has worked so far
AppleSupport,2023-03-01 22:03:39+00:00,"@sdepew02 Thanks for reaching out. We’re here to help.
To get started, send us a DM including which device you’re using, the software version installed, and the exact issue you’re experiencing with Apple Maps.
This will help determine next steps. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-01 22:02:14+00:00,"@ArtsMike Happy to help! To unsend a message that you send within Messages, you only have a 2 minute window to unsend the text. You can edit the text within 15 minutes of sending the message. You can see more details here: https://t.co/fllZ3T5jrW
DM us with questions. https://t.co/GDrqU22YpT"
WhyteleafeEagle,2023-03-01 22:01:24+00:00,"Someone has left their Apple pro ear pods on the jubilee line tonight. Any idea how I can get them back to them? Please RT
Thanks #apple @AppleSupport"
AppleSupport,2023-03-01 22:00:39+00:00,"@Rareyams If you use your AirPods with iPhone, the following page offers information on the audio level features available. Reviewing these options may help: https://t.co/545LqspgdX
If you have questions, or need further assistance, DM us. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-01 21:56:23+00:00,@vkykumar320 We’re happy to help. Send us a DM and tell us a bit more about the situation. We will work together there towards a resolution. https://t.co/GDrqU22YpT
ArtsMike,2023-03-01 21:53:28+00:00,"@AppleSupport Just yesterday I sent a GIF to a friend which was very wrong, but I was able to unsend it 👍🏻 relief 😮💨!"
vkykumar320,2023-03-01 21:45:11+00:00,2nd time my airpods pro stops working what to do ? @AppleSupport @tim_cook
AppleSupport,2023-03-01 21:34:06+00:00,"@Paynie89 Thanks for reaching out. We’d like to help. Please DM us, and let us know the Mac model and macOS version you’re seeing this with, and we’ll go from there. https://t.co/GDrqU22YpT"
CoffeeCat086,2023-03-01 21:28:50+00:00,"@AppleSupport Lol i already did. I’ve fixed the dock, and all of it. Every option I can possibly think of. Lol turned AppleWatch off and then back on first as well"
AbdulSa41217987,2023-03-01 21:24:00+00:00,"@AppleSupport Apple wallet is thief, stolen my $3000 dont use apple wallet plz"
ProfGamecock,2023-03-01 21:23:54+00:00,"@AppleSupport Done!
I'll sit here and wait for the update to program. I'm sure they'll have it fixed within a matter of minutes, right?"
tuskerrider,2023-03-01 21:23:29+00:00,Now a days apple products are not providing quality products @Apple @AppleSupport my AirPods Pro feels crackling sounds. Not expecting this kind of poor quality products from @Apple
Paynie89,2023-03-01 21:21:43+00:00,@AppleSupport I’m having issues with my Mac ever since I’ve upgraded software it will keep turning off unless it is plugged in anything I can do to help it? #help
AppleSupport,2023-03-01 21:10:49+00:00,"@CoffeeCat086 You can check the different options to check the time on your Apple Watch here: https://t.co/8x9hZq9Pr0
While you may not be able to remove the compass, a new complication may change things: https://t.co/SQJM5Cn3v3
Meet in DM for more help. Thanks. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-01 21:08:39+00:00,"@frenchie_lee FaceTime is up and running, and should be available to you. Check the status here: https://t.co/waNYZdXpJm
To help us get a better understanding, let us know in DM more about what’s happening, the device you’re using, and the OS version installed. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-01 21:06:34+00:00,"@iluispc_perez Hello there. You’ve come to the right place. We’re here for you and want to do all we can to help you with your iPhone.
Feel free to DM us and let us know which iOS you’re running. You can go to Settings > General > About to locate the version. https://t.co/GDrqU22YpT"
iluispc_perez,2023-03-01 21:03:00+00:00,@AppleSupport I have an issue. My iPhone 14 Pro Max is shutting down unexpectedly. Today is the third time that has happened.
AppleSupport,2023-03-01 21:00:54+00:00,"@Djhioupy Hello! We can look into your battery concerns with you. To start, we always recommend users go through our helpful tips here: https://t.co/KDbDA7HHjw
Let us know in DM how long ago you updated, so we can work together on a solution. https://t.co/GDrqU22YpT"
CoffeeCat086,2023-03-01 21:00:50+00:00,"@AppleSupport how can I completely remove the compass from my dock? Every time I turn my watch, I want to look at the time, or rather hear the time, the compass pops up first, and I can’t seem to get it out of the way, so it doesn’t do that all the time."
AppleSupport,2023-03-01 21:00:39+00:00,"@PamR45341177 We certainly understand needing to regain access to the account, but there isn’t a way to speed up the process. Going to a store would not change the timeframe."
frenchie_lee,2023-03-01 20:58:09+00:00,Is everyone having issues with FaceTime? Just me? @AppleSupport it’s been going on for days…
PamR45341177,2023-03-01 20:50:24+00:00,@AppleSupport thank you for your response regarding recovery. Can I visit a store in person to get it done sooner?
AppleSupport,2023-03-01 20:49:54+00:00,"@ZupiterMonk Thanks for tagging us, we want to help. Start here to see if the steps help with the slow performance: https://t.co/q0neNT0ZXV Also this article may help as well: https://t.co/R3E2XmivIo Meet us in DM for more questions and troubleshooting. Thanks. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-01 20:49:08+00:00,"@PamR45341177 Happy to assist with some information! It sounds like you are using account recovery. If that is the case, since it is an automated verification, we are unable to speed up the process.
DM us if you have additional questions. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-01 20:43:22+00:00,"@victorbrei We’re here to help if you are experiencing issues. To get started, send us a DM. Let us know which specific version of iOS 16 you have, and what’s going on with your device. We’ll meet you there: https://t.co/GDrqU22YpT"
PamR45341177,2023-03-01 20:37:00+00:00,@AppleSupport why does apple need 28 days to help me recover a password when they are sending verifications to the wrong number? How can I get this done quicker PLEASE. Thank you.
victorbrei,2023-03-01 20:32:16+00:00,@AppleSupport My bad. The internet was slow.
AppleSupport,2023-03-01 20:29:46+00:00,"@BernieKattner We appreciate you taking the time to help out your neighbor, we’re happy to lend a hand as well!
Check out the this page which goes over feature that may provide a solution for him: https://t.co/uSPsFgQmcP
DM us with questions, or for more help. https://t.co/GDrqU22YpT"
ZupiterMonk,2023-03-01 20:27:16+00:00,"@vladquant I don't know what's the problem with @AppleSupport macbook running slow, programs are crashing and @LinkedInHelp doesn't behave fine on Orion browser, it's just crashing slow not loading pages, pop up and many more things. As if likedIn is not a website but a browser hogger sh*t"
AppleSupport,2023-03-01 20:23:36+00:00,"@Danyell86 Hi there, we want to help. If we understand correctly, your right AirPod is not working properly? If yes, then the steps in this article should help resolve that: https://t.co/mVd37zPp6r If the issue continues, please DM us and we can continue there: https://t.co/GDrqU22YpT"
Mikeperezc,2023-03-01 20:20:32+00:00,@AppleSupport Is getting worse btw. Last night the battery went from 92% to 0% WHILE I WAS SLEEPING https://t.co/tiOYjdeKHL
BernieKattner,2023-03-01 20:19:49+00:00,"Hey @Apple @AppleSupport got an 70+ neighbor who got himself an iPhone SE from a friend, but the home button won’t work for him. You can hear it click, works for me, works for the neighborhood kids and family members, just not for him! What’s up?"
aimeegreen96,2023-03-01 20:18:50+00:00,Not the person from @AppleSupport suggesting DRIVING 7 HOURS TO HELP MY GRANDPARENTS VERIFY THEIR CELLPHONE NUMBER!!!! Like come on????
Mikeperezc,2023-03-01 20:18:49+00:00,@AppleSupport For some reason my account gets blocked when I try to dm you 😕. My case is already submitted No. 101930534512 but I haven’t had a follow up call.
EliteLooser,2023-03-01 20:18:39+00:00,"too many bugs to mention all. Picking out one that seems potentially bad. This has happened in Spotify a lot, a few times in Messages. Restart makes it go away. Symptom: ""highlighted"" light blue key(s) @apple @applesupport https://t.co/mz1ynTKpAA"
Robbie_Gibbs,2023-03-01 20:16:03+00:00,"@AppleSupport @reneritchie @markgurman Apple Music should refresh in the background. It should take 15-30 seconds each to load the listen now, brows, or radio tabs"
AppleSupport,2023-03-01 20:09:44+00:00,"@CoCo_ChanelC Thanks for contacting us. We want to help. To start, send us a DM and let us know which version of macOS is running on your Mac and we’ll work with you further from there. https://t.co/GDrqU22YpT"
CoCo_ChanelC,2023-03-01 20:04:46+00:00,@AppleSupport my MacBook Air screen will go out right in the middle of me working on something. Why does the screen continue to go black?! Can someone please help me before I snap this piece of shit in half!
AppleSupport,2023-03-01 19:56:58+00:00,"@Cocoa_Zee Hi there, we want to see how we can help. To confirm, did you have Do Not Disturb or a Focus status on? Please DM us your answer and we can use that information to look further into this with you. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-01 19:53:48+00:00,"@GamingPoliceDP We can help. Sharing your ETA allows you to share your live location and all stops along your route while navigating. Learn more here: https://t.co/OPph8kw8wH
If that’s not what you needed, we encourage you to leave feedback: https://t.co/eTPVYVFyd8"
CodeNameMalcom,2023-03-01 19:52:04+00:00,Thank you @AppleSupport
AppleSupport,2023-03-01 19:50:18+00:00,"@AlexMarks182 We’re here to help, and would like to know more about the issue you have with your AirPods Pro. Please follow the link to DM us some details about what is happening, and we’ll get started there. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-01 19:42:32+00:00,"@heygoldsand Hi there, we’d be happy to help explore issues you’re experiencing. Which device and OS version are you using? Please let us know via DM, including details on the issues you’re having with the storage/Bluetooth. We’ll help out further from there. https://t.co/GDrqU22YpT"
AlexMarks182,2023-03-01 19:39:44+00:00,Hey @AppleSupport I think my AirPod pros I’ve barely had for 6 months are dying out on me :( help
_CampingPro_,2023-03-01 19:36:15+00:00,"Does anyone know if you can create a trip in @Apple maps and then, share that trip with someone else? I can’t seem to do this and I am pretty good with this type of stuff usually. @AppleSupport"
AppleSupport,2023-03-01 19:31:56+00:00,"@NortonRVA We can certainly look into this with you and see how we can help out.
To learn more, what happens exactly when you take a screenshot? Do you end up with more than one screenshot?
Let us know in a DM to continue."
nwbInk,2023-03-01 19:29:51+00:00,@AppleSupport awwww okay 🥹😭
AppleSupport,2023-03-01 19:28:56+00:00,"@JolPhhoring Hey there, we’re here for you and want to see how we can help out.
Join us in a DM and we’ll discuss your options together. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-01 19:13:15+00:00,@CharlotteMedler We understand your concern. Please send us a DM so we can gather a few more details. https://t.co/GDrqU22YpT
Vinie__,2023-03-01 19:10:34+00:00,"@Apple @AppleSupport why are y’all so picky with payment cards?
If you don’t want the money, just say so. You’re stressing me fr"
robeakins,2023-03-01 19:09:15+00:00,@AppleSupport Spoke too soon radar is gone again on expanded view. It was back for a short time on the 27th.
ClosedDomain,2023-03-01 19:05:42+00:00,Hey @AppleSupport do you have a spare battery in your warehouse lying waste. I really can’t bring myself to part with my iPod classic 🥺😫 The gem’s battery is draining from full to 0 in 10 mins but it has an amazing collection. 😭
AppleSupport,2023-03-01 18:59:44+00:00,"@CodeNameMalcom We’re here to help! Please send us a DM with your battery health information, and we’ll go from there: https://t.co/DO19lY0EME https://t.co/GDrqU22YpT"
AppleSupport,2023-03-01 18:59:39+00:00,"@savandyonn Hey there. Looks like we’ve already been assisting you in DM, but never heard back. Please continue with us there if you’re still seeking support: https://t.co/GDrqU22YpT"
AppleSupport,2023-03-01 18:57:23+00:00,@iamzhanox It’s important to have a payment means and we can help out. We’d recommend first following the troubleshooting steps listed at https://t.co/ss9VPzrcls DM us if you need additional help. https://t.co/GDrqU22YpT
AppleSupport,2023-03-01 18:52:28+00:00,"@Who__Chance Hey there, and thanks for reaching out! We’d be happy to take a closer look into this with you. So we can be sure to provide you with the best steps, can you DM us which device and software version you’re seeing these notifications on? We’ll continue from there: https://t.co/GDrqU22YpT"
DoubtfulKevin,2023-03-01 18:50:44+00:00,"@AbbottGlobal @Apple @SF_DPH @AppleSupport @Reuters @AP @NPR @SFPublicPress @SenFeinstein - this is the information I called the office about. Thank you for your attention, health staff.
Again, @FreeStyleDiabet/@AbbottGlobal has both the $ for the app, and their cage of software, but not the $ to share it with practice-standard software.
#MyBodyMyData"
AppleSupport,2023-03-01 18:49:28+00:00,"@JoshuaS45280711 We want to ensure that you can complete your transactions, so let’s look into this together. In DM, tell us if you see an error message, and we’ll figure out the best way to help. There are troubleshooting steps that may help here: https://t.co/ss9VPzrcls https://t.co/GDrqU22YpT"
AppleSupport,2023-03-02 23:56:34+00:00,@dustin_holden Our apologies that you’re having trouble with the link we provided. If your prefer you can reach out here: https://t.co/IBIY3vMgPj Or use this link to send us a DM: https://t.co/GDrqU22YpT
suhascshekar,2023-03-02 23:54:49+00:00,@AppleSupport is there a way I can convert the amount in my Apple ID to a gift card. Please let me know as I have to change the location of my iPhone as I am travelling to India in a couple of days.
AppleSupport,2023-03-02 23:53:48+00:00,"@JonathanDGaby Sounds good. If you’re in need of further assistance, send us a DM and we’ll go from there: https://t.co/GDrqU22YpT"
AppleSupport,2023-03-02 23:51:03+00:00,"@ReThinkReviews Hello! We’d be happy to look into this for you. To start, are you able to follow the ‘Change your forwarding address’ section here to see if you can receive this email? https://t.co/n6WymgHEdr
Send us a DM with the answer, we’ll work with you there. https://t.co/GDrqU22YpT"
JonathanDGaby,2023-03-02 23:44:50+00:00,@AppleSupport Thanks! I’ll update and check back in with you.
dustin_holden,2023-03-02 23:44:11+00:00,@AppleSupport Yeah I tried that and got a message that it failed to send - then it said my account was locked - what are you trying to pull?
BrettRJ3,2023-03-02 23:43:43+00:00,@ItsKaranT @AppleSupport @Apple Nope they didn’t unfortunately
AppleSupport,2023-03-02 23:42:18+00:00,"@sumeetn We’d be happy to look in to this with you and see what options are available!
Could you please send us a DM so we can gather some info and get started? https://t.co/GDrqU22YpT"
BenAdamsonDXB,2023-03-02 23:41:43+00:00,@Apple @Microsoft @AppleSupport @MicrosoftHelps - what are your thoughts here? This is a problem that has plagued Office for Mac for years on both Intel and Apple Silicon.
sumeetn,2023-03-02 23:32:56+00:00,Hey @Apple your waterproof watch just popped out after a swim in the pool 😡😡😡 @AppleSupport really disappointed and angry with the quality #Apple #AppleWatch https://t.co/AayMCIJ5ws
AppleSupport,2023-03-02 23:31:27+00:00,@missymichele4 We’d be happy to look into this with you. Send us a DM to get started. https://t.co/GDrqU22YpT
AppleSupport,2023-03-02 23:29:42+00:00,"@jrh2000 We can take a closer look into the issue you’re experiencing. To help us get a better understanding, let us know in DM which OS versions you have on the devices experiencing this issue.
We’ll meet you there. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-02 23:27:46+00:00,"@JonathanDGaby Hi, thanks for reaching out to us. We are happy to look into this with you. Go ahead and update to iOS 16.3.1, updates have important security updates and bug fixes. A backup is recommended before you do so. DM us if you have questions. https://t.co/GDrqU22YpT"
missymichele4,2023-03-02 23:26:04+00:00,@AppleSupport how do I contact you to lodge a complaint against a phone support person?
JonathanDGaby,2023-03-02 23:22:56+00:00,"Anyone else who owns an iOS device running iOS 16.2 experiencing multiple occurrences of #carplay cutting out? I drive a @kia 2023 Niro abut I don’t think it’s the car’s problem.
@Apple @AppleSupport @Kia"
AppleSupport,2023-03-02 23:16:15+00:00,@dustin_holden We’d like to look into this with you. Send us a DM and let us know more about the issue you’re experiencing with your Apple TV. We’re work on it together there. https://t.co/GDrqU22YpT
AppleSupport,2023-03-02 23:10:00+00:00,"@jaiphogat28 We want to help with your Apple ID. Try the steps in this resource which are geared towards your issue: https://t.co/kvZ2sBzauu
Send us a DM if you still need help, so we can work together on a solution. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-02 23:02:44+00:00,"@Kanizer3 We’d like to help. Is this happening with your iPhone? If so, are you using Control Center to turn Wi-Fi off? If so, it’s normal for it to turn back on under certain circumstances. Learn more here: https://t.co/makfFoqJSS
DM us with any more questions here: https://t.co/GDrqU22YpT"
jaiphogat28,2023-03-02 23:02:02+00:00,"@AppleSupport hey apple, i want to share a mail with you i have just sent to Applesupport@email.apple@com
Please give a mail id for the same, I think my iphone data is compromised."
AppleSupport,2023-03-02 22:51:53+00:00,"@SaurabhVPoddar We’re here to help. To confirm, are you using the same Apple ID on the Mac? We ask because this is a requirement for automatic switching: https://t.co/5z7dN1xCF1
Let us know in DM to continue. https://t.co/GDrqU22YpT"
SaurabhVPoddar,2023-03-02 22:46:15+00:00,Here you go @AppleSupport https://t.co/AgS31xgtpz
SaurabhVPoddar,2023-03-02 22:44:21+00:00,"@AppleSupport why don't my 2nd generation AirPods Pro automatically connect to my M2 MacBook Air? I always get the option to connect to AirPods nearby, but they don't automatically connect/switch to the MacBook. The AirPods work seamlessly between the iPhone and iPad Pro"
AppleSupport,2023-03-02 22:40:13+00:00,"@Longfellow_TV We want to help with your Beats. Try the steps in this resource which are geared towards your issue: https://t.co/MQXnwBEt81
Send us a DM if you still need help, so we can work together on a solution. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-02 22:39:38+00:00,"@celibacyrules31 We’re glad you reached out, and want to look into this with you more. To get us started, are you using the Weather app on an iPhone? If so, which software version shows in Settings > General > About as menu options can vary?
Let us know in DM to continue. https://t.co/GDrqU22YpT"
JKGowdham92,2023-03-02 22:33:13+00:00,@AppleSupport why are you giving false answer to customer. I asked one agent 3 hrs ago regarding purchasing an Apple Watch ultra. Can I use this watch in Netherlands even if I buy in Canada? The person said yes I can use. Now I am checking with another agent and getting can’t https://t.co/5haU0faysv
AppleSupport,2023-03-02 22:26:57+00:00,"@_falafey Hi there. We’re happy to help. You can disable spatial audio in Control Center with the steps here: https://t.co/pAAlZLBEgk
Questions? DM us using this link: https://t.co/GDrqU22YpT"
sweetjohn,2023-03-02 22:24:20+00:00,Dear @Apple & @beatsbydre - The Beats Fit Pro are my favorite ear buds. This is the 2nd time in a year I’ve used Apple Care+ to replace them for the ear wings separating from the ear piece. Hope you all fix this flaw for the next version. @AppleSupport is sending replacements. https://t.co/wC5cWZS2VP
AppleSupport,2023-03-02 22:21:06+00:00,"@tpreynolds We want to help with your Mac. Send us a DM if you still need help, so we can work together on a solution. https://t.co/GDrqU22YpT"
MacFan757,2023-03-02 22:19:41+00:00,"@AppleSupport It seems @Tim_Rex_ is invisible to you, is your tooling having issues with Twitter for some people?"
GTAGAMER001,2023-03-02 22:18:05+00:00,@AppleSupport Sent dm
Tim_Rex_,2023-03-02 22:17:17+00:00,@AppleSupport seems you can’t see my DMs. Is Twitter broken or your support interface to Twitter?
_falafey,2023-03-02 22:16:16+00:00,@AppleSupport you HAVE to tell whichever devs need to hear this but I HAVE TO HAVE AN OPTION TO DEACTIVATE SPATIAL AUDIO SYSTEM WIDE. why was this option removed in iOS 15 and late? Please for the love of god don’t make me throw away 27 years of being an Apple user.
beejay_79,2023-03-02 22:09:13+00:00,@1tinaloy1 @Apple @AppleSupport @Apple doesn't give a single f&%K about us in the south east asia region.and now I have changed my phone to s23 ultra that is more reliable sales after service.
AppleSupport,2023-03-02 22:08:35+00:00,"@DaveChap We know that it’s important to be able to check the radar for weather conditions, and we’d like to help. Send us a DM to let us know which device and version of software you’re using since menu’s vary. Also let us know if this is happening in multiple locations as well. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-02 22:06:40+00:00,"@schm_and Let’s get you headed in the right place for help. You can see some available awards as seen in this article: https://t.co/trLZy6FyDe If you have further questions, you can reach out to a Fitness app expert with this link: https://t.co/IBIY3vMgPj"
AppleSupport,2023-03-02 21:56:20+00:00,"@josehumbertoco Thanks for reaching out. We’re here to help.
Send us a DM letting us know which device you’re using, the software version installed, and more details about the issue you’re experiencing.
We will go from there. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-02 21:53:54+00:00,"@GTAGAMER001 Hi there. We certainly understand how important it is that you can depend on your iPhone charging as you’d expect. We want to do all we can to help.
Do you have access to another charging cable we can test with? Feel free to DM us and let us know. https://t.co/GDrqU22YpT"
musteekp,2023-03-02 21:49:46+00:00,"@JoshWharff @AppleSupport If you have the serial and IMEI number
He helped recover mine"
AppleSupport,2023-03-02 21:48:53+00:00,@Clotte94 You’re very welcome!
AppleSupport,2023-03-02 21:44:38+00:00,"@_MJsmooth We certainly understand needing to have this issue resolved, and we’d be happy to help. DM us & let us know which iPhone and version of software you’re using. Also, to help with isolating this issue, can you tell us if this happens with all calls or just certain ones? https://t.co/GDrqU22YpT"
josehumbertoco,2023-03-02 21:43:11+00:00,@SamiFathi_ Having the same problem @AppleSupport ever since iOS 16.0. Stopped with 16.2 and returned even worse with 16.3.
GTAGAMER001,2023-03-02 21:42:38+00:00,@AppleSupport my iPhone charger won’t go fully into the port and my phone won’t charge
Clotte94,2023-03-02 21:41:39+00:00,@AppleSupport Thanks for your quick response :)
AppleSupport,2023-03-02 21:39:23+00:00,"@Clotte94 We want to help with iCloud. You can see the accepted payment methods for your region here: https://t.co/Vdmz8wJGto
Bank withdrawals are not an option.
Send us a DM if you still need help, so we can work together on a solution. https://t.co/GDrqU22YpT"
schm_and,2023-03-02 21:36:57+00:00,No award for 1.000 days x 800kcal move streak? @Apple @AppleSupport @tim_cook https://t.co/2pc9ckWp9y
AppleSupport,2023-03-02 21:34:22+00:00,"@luuleey_ We want you to be able to enjoy movies with friends and family over your device, so we’d like to learn more about this incident. DM us and let us know which device and version of software you’re using. Please let us know if this happens every time you use SharePlay. https://t.co/GDrqU22YpT"
Clotte94,2023-03-02 21:34:00+00:00,@AppleSupport do You know the answer to my question?
AppleSupport,2023-03-02 21:31:17+00:00,"@EricYeah612 Thanks for connecting with us. We greatly value your feedback and if this is something you’d like to see in the future, we encourage you to leave feedback here: https://t.co/eTPVYVFyd8"
AppleSupport,2023-03-02 21:31:17+00:00,@Georgia23961 We're happy to help. Does it persist after restarting? This is useful for intermittent issues. Let us know in DM to continue. https://t.co/GDrqU22YpT
AppleSupport,2023-03-02 21:25:36+00:00,"@twiggslane Thanks for reaching out. We’d like to look into this together. Please DM us, and let us know the issues you’re seeing, as well as the iPhone model you’re seeing them with. We’ll get the best options from there. https://t.co/GDrqU22YpT"
Georgia23961,2023-03-02 21:21:42+00:00,"@AppleSupport had my phone Since December and I’ve had to get it fixed once due to malfunctioning by it’s self, now all it does is freeze! 3 months in to a 3 year contract. Iphone14promax !!!"
twiggslane,2023-03-02 21:18:19+00:00,"@AppleSupport Since updating my iphone , the phots and video do not work properly , problems ⁉️"
pansrana,2023-03-02 21:15:57+00:00,"@Apple @AppleSupport @SannyVaraganti
selling ur products on jiomart they should know difference between airpods pro and airpods.
Let customer suffer if they buy. https://t.co/9ZOheIDBUl"
AppleSupport,2023-03-02 21:08:30+00:00,"@waynemel68 Hi there, we understand it’s important for your challenge status to be correct. Let’s get you headed in the right place to work with an Advisor who can assist you. Please reach out to an expert here: https://t.co/IBIY3vMgPj"
lenyora_ZA,2023-03-02 21:07:48+00:00,"@Galeshewe_GT @Vodacom111 @MyiStoreSA @AppleSupport @Vodacom Wait, is esim now supported on iOS devices operating on Vodacom network?
Also, did you come right with your iMessage?
And which Vodacom outlet did you go to to activate your esim?"
lucee_turner,2023-03-02 20:56:04+00:00,shoutout to Kristela from @AppleSupport for finally taking my iPhone issue seriously! after months of the same problem here’s hoping to a resolution tomorrow🥂
waynemel68,2023-03-02 20:50:46+00:00,"@AppleSupport For Apple Watch, March challenge (move 5 days) started and I completed 1 move day but today it shows 0. What happened?"
AppleSupport,2023-03-02 20:40:58+00:00,@alainparadis We want to point you in the right direction for help. Please reach out to our Developer Support using this link for assistance with your App Store Connect account: https://t.co/7Uex6t3q52 J7n7H
AppleSupport,2023-03-02 20:39:43+00:00,"@Bomate_AT We’re here to help! FaceTime appears to be up and running here: https://t.co/waNYZdXpJm
Please send us a DM and let us know more about what’s happening when you use FaceTime. Be sure to include the device you’re using and the OS version installed. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-02 20:35:58+00:00,"@Jefferson12789 We can help. Our page here goes over some situations when you might notice that your device feels warmer: https://t.co/XKNOa9h5en
If you need more help, let us know if this happens when doing something specific on your iPhone, and we’ll continue there. https://t.co/GDrqU22YpT"
Bomate_AT,2023-03-02 20:29:08+00:00,@AppleSupport @Apple why is FaceTime not working
alainparadis,2023-03-02 20:28:52+00:00,@AppleSupport How do I unsubscribe from iTunes Connect e-mails?
AppleSupport,2023-03-02 20:28:12+00:00,"@jordanxkyra Hi there, we’d be happy to help out with the Notes app. Our page here has some helpful steps that can assist with missing notes: https://t.co/z15bblTN9b
If you happen to need further help, please let us know via DM, and we’ll explore things further. https://t.co/GDrqU22YpT"
Jefferson12789,2023-03-02 20:25:07+00:00,"@AppleSupport After updating my iPhone 14 pro max to 16.3.1, I have noticed my phone getting much hotter than before the update. I always have my brightness way down, app refresh off for most, location turned off for all apps. Any idea why this is happening?"
AlphaGerman,2023-03-02 20:24:49+00:00,@AppleSupport Safari sidebar 4 reading list & b-marks is really annoying when u click the top 2 open the side bar & then have 2 click way dwn lo 2 access options 4 type & then have 2 click up hi again. Y not make it a drop dwn like Chrome? Less Mouse travel time. Not efficient.
AppleSupport,2023-03-02 20:22:02+00:00,@adsugranja We offer support over Twitter in English. Get support in your preferred language here: https://t.co/IBIY3vMgPj or find local community support options here: https://t.co/HLvSjp4Bj4
AppleSupport,2023-03-02 20:15:46+00:00,"@Alexeg1991 We want to help with FaceTime. Try the steps in this resource which are geared towards your issue: https://t.co/3xNrFwkkUx
Send us a DM if you still need help, so we can work together on a solution. https://t.co/GDrqU22YpT"
Leoceeno,2023-03-02 20:13:49+00:00,@AppleSupport idk which one of you dumb fuck developers switched the Siri IOS command on “set alarm” from actually setting an alarm(like always) to suggesting that you download a 3rd party alarm app but fire them
AppleSupport,2023-03-02 20:11:55+00:00,"@mesandeep5 Accurate Activity readings are important, and we’d love to help! To start, make sure you’re set up for success using the guidelines in https://t.co/B6fyUw8PGh
If the issue persists, partner with our specialists here: https://t.co/jXiFyVJpJz"
AppleSupport,2023-03-02 20:09:25+00:00,@notthetivanshow That’s great news. You're welcome. Please let us know if we can be of any more assistance in the future.
AppleSupport,2023-03-02 20:08:45+00:00,"@AtulMaurya06 Happy to Help! Send us a DM and let us know some more details about what you’re experiencing, along with which device and version of software you’re using. This information will help us to provide you with the most accurate steps to help with the issue. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-02 20:08:10+00:00,@milky_sako Thanks for contacting us. We want to help. Send us a DM and let us know which model of iPad and version of iPadOS you’re using and we’ll go from there. https://t.co/GDrqU22YpT
AppleSupport,2023-03-02 20:02:56+00:00,@RorroCarrillo We offer support via Twitter in English. Get help in your preferred language here: https://t.co/IBIY3vMgPj or join Apple Support Communities: https://t.co/HLvSjp4Bj4
AppleSupport,2023-03-02 20:01:40+00:00,"@ukesinho Hi, we’d like to help out. We offer support via Twitter in English. You may reach out to us for assistance in your preferred language here: https://t.co/IBIY3vMgPj
You may also opt to join our Apple Support Communities here: https://t.co/HLvSjp4Bj4"
AppleSupport,2023-03-02 19:57:00+00:00,"@sayyed_789 Thanks for that info. In rare circumstances, siblings may have a similar mathematical representation of their face. If you have security concerns, we recommend using a passcode. Learn more about this here: https://t.co/mqMctKve9k DM us with questions. https://t.co/GDrqU22YpT"
AndrewSharapoff,2023-03-02 19:53:58+00:00,@AppleSupport Woooooow! That’s very useful!
AppleSupport,2023-03-02 19:51:39+00:00,"@PeachCreamsss Thanks for tagging us about your display! We want to help with this unexpected behavior in any way that we can. Please DM us the device this is happening on, and when it began. We’ll be able to expand there. https://t.co/GDrqU22YpT"
CalDigit,2023-03-02 19:49:50+00:00,"@glennflanagan @AppleSupport @LGUK Try swapping out the Thunderbolt cable connecting the dock and laptop. Also swap out the video cable between dock and monitor. Beyond that (or if the replacement Thunderbolt cable fixes it), I recommend you get in touch with our support team for further help. Support@CalDigit.com"
AppleSupport,2023-03-02 19:48:29+00:00,"@xo_SaraHawks We’d be happy to look in to these issues with you!
Could you please send us a DM with which iOS version you’re currently running so we can get started?
You can find that in Settings > General > About. https://t.co/GDrqU22YpT"
albertkanaal,2023-03-02 19:46:38+00:00,@apple @AppleSupport @tim_cook Terrible customer service for people with a disability… senior advisors only available through phone. It’s 2023 come on. E-mail should be possible too! Makes me furious nobody thinks about us. I deserve help too! #Disability
AppleSupport,2023-03-02 19:45:23+00:00,"@chadkerychuk We’re here to help, and would like to know more about the battery concern you have. Please follow the link to DM us the battery health from Settings > Battery > Battery Health, and we’ll get started from there. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-02 19:44:28+00:00,@lucee_turner We’d be happy to help explore your storage concerns. Which iOS version is currently installed (Settings > General > About)? A quick restart of the device may help to refresh things as well in some situations. DM us and we’ll continue assisting from there. https://t.co/GDrqU22YpT
idleviewings,2023-03-02 19:43:18+00:00,"@tim_cook @AppleSupport Why is the App Store app review text entry so very poor on iPad? No cut/copy/paste, and it strips out returns used for paragraph breaks.
Also @Telstra - why does your My Telstra App crash all the time? @TelstraEnt https://t.co/tlMm0Gi3mE"
AppleSupport,2023-03-02 19:42:53+00:00,"@mariacrystal_ We’d like to help and look into this. Which device are you using? Have you made any changes to your device or changed any features since this issue happened?
Please send us a DM with your reply and we’ll determine the next steps there. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-02 19:42:43+00:00,"@prepseer We’re here to help! You can now change the style of the time on your Lock Screen in iOS 16. Check out the “Edit a Lock Screen” section here for steps: https://t.co/qlrtcS3iDm
Feel free to DM us if you have any other questions. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-02 19:41:53+00:00,"@i_m_asutosh Allow us to assist. If you haven’t done so yet, restart your iPhone. This may seem like a fairly simple step, but it will refresh your device, which could help.
If the issue persists, let us know the iOS version your iPhone is on in DM, and we’ll go from there. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-02 19:41:38+00:00,@_kaylasantos We'll be happy to assist with any technical concerns you may have. What's going on with your camera? Let us know in Direct Message. https://t.co/GDrqU22YpT
AppleSupport,2023-03-02 19:37:08+00:00,"@notthetivanshow We can understand the desire to get things sorted out. In this case you may try contacting the region closest to you from our available list here, as they’ll be in the best position to assist: https://t.co/uxIiK8QAD8 https://t.co/GDrqU22YpT"
Alexeg1991,2023-03-02 19:36:58+00:00,@AppleSupport FaceTime did not work in iOS 16.3.1. Previously it works. Fix it. Please.
milky_sako,2023-03-02 19:33:45+00:00,@Apple @AppleSupport I'm facing the same issue on my ipad.
AtulMaurya06,2023-03-02 19:31:55+00:00,@AppleSupport @Apple I don’t know how to fix this bug. If I want to have a buggy experience I would buy an android phone or tablet. 😡Please fix this. You OS experience is getting worst every year. 😩🤨 https://t.co/3gihBZsJK0
AppleSupport,2023-03-02 19:30:07+00:00,"@barb_status We’ll be glad to assist you today. This issue can be resolved by powering off your iPhone and restarting. Use these steps: https://t.co/P4k9LnWGPW
Test and send us a DM with the result. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-02 19:29:57+00:00,@Alexeg1991 We offer support via Twitter in English. Get support in your preferred language here: https://t.co/IBIY3vMgPj or join Apple Support Communities: https://t.co/HLvSjp4Bj4
AppleSupport,2023-03-02 19:29:52+00:00,"@jadorekaior2 We understand wanting to know what you were charged for, and we can help. The steps in the following link should help you get to the bottom of the charge you’re seeing: https://t.co/Udf3mWoKiY
If you need additional support, feel free to DM us. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-02 19:29:22+00:00,"@BrianGLuvsMusk We understand the concern with Weather and we can guide you. On the article https://t.co/380WAa2rUH are steps to report errors, which we recommend you do. If problems persist, let us know in Direct Message. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-02 19:26:57+00:00,@Dilipku53045456 We can get you pointed in the right direction for guidance. Our sales specialists can partner with you here: https://t.co/8yjRd1Xo0i
AppleSupport,2023-03-02 19:26:37+00:00,"@renmt41 Hello, we’d like to assist. From what you mentioned, it sounds like there is an issue when you attempt to install the update. Are you attempting to install over Wi-Fi or using a computer?
Please send us a DM with your response and we’ll determine our next steps. https://t.co/GDrqU22YpT"
PeachCreamsss,2023-03-02 19:26:31+00:00,@AppleSupport please why is my screen purple and how do I get this off 😭 https://t.co/Z7uFc36h6S
mesandeep5,2023-03-02 19:25:46+00:00,@Apple @AppleSupport So I cycled for 33 mins for around 3.5 miles. But Apple Watch exercise ring moves from 5 mins to 6 mins i.e. just 1 min. What did I miss ?
24thminute,2023-03-02 19:24:16+00:00,@JeffreyPNesker @StoneMonkey83 @AppleSupport @TSN_Sports @Sportsnet @Roku @AppleTVPlus Just wait till they go after Google on Search...
nerva261,2023-03-03 23:59:30+00:00,"@Apple @AppleMusic @AppleTV @AppleSupport @ApplePodcasts @AppleEDU @apple @GreenDotSchools @GreenDotBank @GreenDotAssured @greendot_ca @GreenDotGCKY @greendot
Hey Tim Cook and Daniel Henry…
What I witnessed today from your employees direct discrimination."
ksconceptual,2023-03-03 23:56:11+00:00,"@AppleSupport Hi, guys. I returned a product on the store but still don’t see the refund on my credit card. Can you help me out? Has been like 8 business days already."
AppleSupport,2023-03-03 23:55:44+00:00,"@No_OrdinaryRose We can understand the concern, and we're happy to help. Get started with the steps here to resolve this issue: https://t.co/QWzfIM2eMc Should this trouble persist, DM us for further assistance: https://t.co/GDrqU22YpT"
AppleSupport,2023-03-03 23:54:40+00:00,@Ohhthatszaria We assure you we’ll explore the situation together. Does this happen with all contacts or specific ones? Does it happen in a group call or a one-to-one call? Let us know in DM and we’ll meet you there to move forward. https://t.co/GDrqU22YpT
AppleSupport,2023-03-03 23:54:24+00:00,@BJPsTweets Thanks for reaching out. We’d be happy to assist today. Send us a DM to get started. https://t.co/GDrqU22YpT
AppleSupport,2023-03-03 23:42:58+00:00,@AS_OSha Thanks for reaching out. We’d be happy to assist today. Send us a DM to get started. https://t.co/GDrqU22YpT
AppleSupport,2023-03-03 23:41:58+00:00,@MT_Spartan Thanks for reaching out. We’d be happy to assist today. Send us a DM to get started. https://t.co/GDrqU22YpT
AppleSupport,2023-03-03 23:39:38+00:00,@DeshaDiorr Thanks for reaching out. We’d be happy to assist today. Send us a DM and let us know what type of device you’re using the Apple Music service on to get started. https://t.co/GDrqU22YpT
AppleSupport,2023-03-03 23:38:08+00:00,"@Akkara7771 We can certainly take a look into this with you.
Take a moment to restart your iPhone: https://t.co/v8UilXI2QI
If the issue persists, DM us. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-03 23:34:58+00:00,"@SuStewOfficial Let’s take a closer look at this in DM. Send us a message, we’ll follow up there. https://t.co/GDrqU22YpT"
KonuruSanjeev,2023-03-03 23:31:26+00:00,@Apple @AppleSupport #perosnalised14promax 📱 . It should have only 2 units . If you manufacture 3 unit u have to pay me loyality . Deal 👍?
AppleSupport,2023-03-03 23:28:52+00:00,"@iamlenwa Hi. We know how important Siri is to all of us and we want to help.
It sounds like Siri isn’t understanding what is being said.
Are you using a headset? If not, can you test with a headset, and see if the same issue happens?
Let us know in DM, and we’ll continue there. https://t.co/GDrqU22YpT"
acceptnotjudge,2023-03-03 23:28:01+00:00,"Dear @Apple please make a sensory safe space/room in your stores for us #autistic or #sensoryprocessingdisorder people thank you very much .. it’s very loud, echoey & bright in your stores .. thank you very much @AppleSupport #actuallyautstic #AutismAcceptance I love your stuff🥰"
AppleSupport,2023-03-03 23:25:22+00:00,"@joe_krop Thanks for the additional details.
Let’s try meeting in DM again to take a closer look into this. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-03 23:22:37+00:00,"@FrenchLIQ_ Thanks for reaching out!
It’s expected that your device may be warmer than usual when charging. You can find more info about what things can cause your device to get warm here: https://t.co/XKNOa9h5en
Please DM us with any additional questions. https://t.co/GDrqU22YpT"
michaeljoba,2023-03-03 23:22:20+00:00,@tim_cook @AppleSupport My wish is to get an iPhone Fold 6GB AND 256GB 120Hz for Gaming otherwise I’m gonna buy the Samsung Galaxy Z Fold4 12GB AND 256GB 120Hz for Gaming
michaeljoba,2023-03-03 23:21:49+00:00,@Apple @AppleSupport My wish is to get an iPhone Fold 6GB AND 256GB 120Hz for Gaming otherwise I’m gonna buy the Samsung Galaxy Z Fold4 12GB AND 256GB 120Hz for Gaming
michaeljoba,2023-03-03 23:21:25+00:00,@AppleSupport My wish is to get an iPhone Fold 6GB AND 256GB 120Hz for Gaming otherwise I’m gonna buy the Samsung Galaxy Z Fold4 12GB AND 256GB 120Hz for Gaming
AppleSupport,2023-03-03 23:12:26+00:00,"@RileyWryly We understand. The feedback link we provided is where you can submit what you’d like to see change. Here it is again: https://t.co/eTPVYVFyd8
Select iPhone to get started.
You won’t get a reply, but your feedback is sent to the correct department for review."
lominattii,2023-03-03 23:08:24+00:00,@Lanmark21 @r0cksss_ @JKSully313 @AppleSupport @TwitchSupport 😂😂😂 i love this lanmark
Akkara7771,2023-03-03 22:55:27+00:00,Good morning everyone @Apple @AppleSupport @tim_cook @cnnbrk https://t.co/nwhqjYk7Eg
kisses2yuhgirl,2023-03-03 22:52:48+00:00,@jhetertainment @AppleSupport jeez 🙁
AppleSupport,2023-03-03 22:51:49+00:00,"@albertkanaal We’re happy to help. If you can’t redeem your Gift Card, these steps can help: https://t.co/vUCjN5yRdx
DM us with additional questions, and we’ll meet you there! https://t.co/GDrqU22YpT"
jhetertainment,2023-03-03 22:51:00+00:00,@kisses2yuhgirl @AppleSupport Unfortunately Apple removed the feature where you could use your cash back to pay off some of your credit card balance. Now if you have a cash card all your cash back goes to it.
SunflowerDD2023,2023-03-03 22:46:23+00:00,@imagesbyeric @AppleSupport Mine does it too
AppleSupport,2023-03-03 22:45:34+00:00,@64Tdm3 We’d like to take a further look. Please meet us in DM using the following link. https://t.co/GDrqU22YpT
MTGisadisaster,2023-03-03 22:43:16+00:00,"@AppleSupport Wish for…’reverse shortcut’. For example; setup shortcut for Spoken Content, OK got it setup. But INEVITABLY the widget gets in the way in scrolling and other PB entries. The issue is a shortcut how to disappear the Spoken Content widget. How to OFF shortcut?"
AppleSupport,2023-03-03 22:38:33+00:00,"@Unit06 Hello. Thank you for reaching out. We’d like to help. For this issue, let’s start with the steps listed here if the microphones are not working: https://t.co/fhF5y5UAZM Meet us in DM if the issue continues after trying those steps. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-03 22:35:48+00:00,"@imagesbyeric We’re happy to help with this. To start, have you recently turned on iCloud Keychain on this device? This can appear when you need to approve the device for encrypted data.
DM to let us know, and we’ll meet you there to gather more details. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-03 22:34:18+00:00,"@recklesschels We want to help. From the screenshot it looks like that was over a month ago, so this would be expected if this a monthly subscription. If you have further questions, our billing team can help. Just use this link: https://t.co/NpQJidgpDA"
DerpyAi,2023-03-03 22:30:46+00:00,Hey @AppleMusic @AppleSupport why are these songs no longer on the device in USA? @cashcash @GabbieHanna https://t.co/RDfsCIqV3I
tiny_pjmjk,2023-03-03 22:30:00+00:00,"@JiminLea_ @CelinaJiminVN @Shazam @AppleMusic @AppleSupport Hi .@Shazam @AppleMusic @AppleSupport , Christmas Love by Jimin of BTS is suddenly not available and searchable anymore on Shazam for some reason. It was available before. It would be great if you could Please fix this issue & add the song again asap. Thank you! ☺️
#JIMIN #지민"
AppleSupport,2023-03-03 22:29:37+00:00,"@_uncrinklecut_ We’d be happy to look into this with you. Have you checked to see if Auto-Brightness is turned on? If so, this automatically changes the brightness. Here’s how to check: https://t.co/0LqMUtoDbQ
Let us know in DM to continue. https://t.co/GDrqU22YpT"
draymo420,2023-03-03 22:28:12+00:00,@jbar954 @AppleSupport @josehumbertoco I’ve got 16.3.1 on my iPhone 11 and I haven’t had that issue at all. I wonder if it’s certain models having the issue? That’s definitely strange though.
SuStewOfficial,2023-03-03 22:26:18+00:00,@AppleSupport Won’t let me redeem the apple gift card
AppleSupport,2023-03-03 22:25:52+00:00,"@jayeshgupta2 Hi. If you’re having an issue with the display not working when opened on your MacBook Pro, we want to help.
Meet us in DM, and let us know what’s happening with the display when it doesn’t work. Such as, image garbled, lines, dark, and so on.
We’ll help there. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-03 22:25:07+00:00,@_ResultzMayVary We want to help with Apple Music. Send us a DM with the device and software version you are using so we can work together on a solution. https://t.co/GDrqU22YpT
joe_krop,2023-03-03 22:24:01+00:00,"@AppleSupport My 11 Pro has never had any issues there and it hasn't freezed once at all. Last time, my 14 Pro froze in the middle of the night while charging. The alarm didn't wake me up. I was only able to reset it with volume up/down power button. Very annoying all that."
joe_krop,2023-03-03 22:23:34+00:00,"@AppleSupport Tried to send you a DM, doesn‘t work. Here my response:
I have considered all these points in the link and unfortunately it has nothing to do with it. Sometimes the freeze only lasts 30 seconds after I take my Airpods out and they automatically connect to the iPhone."
AppleSupport,2023-03-03 22:20:02+00:00,"@cinmorolI Hi. If you’re having issues with your iPhone, we want to help, so you can enjoy using it again.
Meet us in DM, and let us know some details about what’s happening. Include any error messages.
Also add which iPhone and iOS version you’re using.
We’ll help all we can. https://t.co/GDrqU22YpT"
RolloTomassi_,2023-03-03 22:19:09+00:00,@AppleSupport can you stop sending me your terrible ads. Step up your game. Y'all have had the same style for years. It's cringe now.
AppleSupport,2023-03-03 22:18:37+00:00,"@ShaddY_Ali786 Hello. Thank you for reaching out. We’ll be happy to help, or look into your options if needed. You can also check here: https://t.co/o9lO6N3zep Meet us in DM if you have any additional questions. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-03 22:17:16+00:00,"@Ronnie98411 We want to help with your Mac. Send us a DM if you still need help, so we can work together on a solution. https://t.co/GDrqU22YpT"
vharrison1984,2023-03-03 22:10:52+00:00,"Dear @Apple @AppleSupport I look forward to the day where you just make Mac OS available to install on any pc build. I’d buy an iPhone or iPad but your computers are way overpriced, and lack in the DIY upgrades. #BeBetter"
AppleSupport,2023-03-03 22:09:36+00:00,"@SuStewOfficial Hi, we’ll be happy to help out. If you are having trouble with redeeming a gift card, you can use the steps found here to get started: https://t.co/vUCjN5yRdx
If you still need assistance, you can reach out to us here: https://t.co/NpQJidgpDA"
Liz2much41l,2023-03-03 22:09:08+00:00,"@Apple @AppleSupport @FCC @bbb_us please explain THIS ?How can APPLE get away w/robbing the consumer like this? How many of us don’t notice? Then you took away 5days of my FREE trial! It clearly states that even if I cancel I can still use it but your rep took it away, WHY? https://t.co/ArNzVVLODG"
Lanmark21,2023-03-03 22:08:26+00:00,@bryanr_13 @AppleSupport @TwitchSupport That’s not the problem. It’s the occasionally being blocked from resubbing after the multiple sub months.
RileyWryly,2023-03-03 22:06:07+00:00,"@AppleSupport You silly gooses, I know that’s not an option, it is literally why I tweeted that"
AppleSupport,2023-03-03 22:04:51+00:00,"@RileyWryly Hi there, we want to help with your question. “Never for this device” isn’t an option available when connecting device. As always, any feedback or suggestions for Apple products are welcomed here: https://t.co/eTPVYVFyd8 https://t.co/GDrqU22YpT"
albertkanaal,2023-03-03 22:00:28+00:00,@AppleSupport your gift card dont work
twitrathon,2023-03-03 21:56:52+00:00,@AppleSupport Okay thanks. ChatGPT thought I could use it with MacBook or iPhone too.
imagesbyeric,2023-03-03 21:55:32+00:00,@AppleSupport Why am I being asked this? https://t.co/iMllnRUgmS
AppleSupport,2023-03-03 21:55:30+00:00,"@twitrathon Hello. Thanks for asking about using an Apple Pencil, as we can answer.
An Apple Pencil can only be used with an iPad. This page shows the pencil compatibility: https://t.co/HvWl2yQuvQ
You can leave feedback here, if you’d like: https://t.co/eTPVYVFyd8"
ohohlook,2023-03-03 21:52:40+00:00,@GuyonClovis @AppleSupport Yes! I am experiencing the same thing sooo annoying! I have to restart my phone!
recklesschels,2023-03-03 21:51:44+00:00,@AppleSupport i paid for Snapchat+ earlier this month and it’s asking me again to pay? https://t.co/mS7jUhHdNA
AppleSupport,2023-03-03 21:49:44+00:00,"@miyanation We want to make sure you are not paying for something that you did not need, so follow the steps here to identify those charges and request a refund: https://t.co/Udf3mWoKiY
For further help, reach out to our billing team: https://t.co/NpQJidgpDA https://t.co/GDrqU22YpT"
64Tdm3,2023-03-03 21:47:50+00:00,"@AppleSupport What if i forgot my Password and dont have the same Sim anymore? The ONLY information I have is the Email adress!
Btw I already created a new Apple ID a month ago, but I cant sign in if theres already another one which Always want a password from me"
basher5000,2023-03-03 21:47:46+00:00,@AppleSupport You were disrespecting the card ……. 😉
AppleSupport,2023-03-03 21:46:44+00:00,"@basher5000 Thanks for reaching out. We’re here to help.
Apple Pay is used to make purchases wherever you see the Apple Pay or Contactless symbol. For details, click here: https://t.co/iR7XazIWYE
If you have suggestions/feedback, submit it here: https://t.co/eTPVYVFyd8 https://t.co/GDrqU22YpT"
AppleSupport,2023-03-03 21:38:13+00:00,"@GuyonClovis We appreciate you reaching out again. From here, we’d recommend leaving feedback about this here: https://t.co/ap3ASkCfXe"
AppleSupport,2023-03-03 21:35:28+00:00,"@BoycottKey We want to help with your iPhone and charger. Send us a DM if you still need help, so we can work together on a solution. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-03 21:33:28+00:00,"@BryanWall Thanks for reaching out. We’re here to help.
First, we ask that you review the information about the iPhone’s Weather app: https://t.co/380WAa2rUH
If you have further questions, DM us including more information about the issue.
We’ll continue there. https://t.co/GDrqU22YpT"
twitrathon,2023-03-03 21:31:16+00:00,@AppleSupport Hi. Can Apple Pencil generation 1 be paired to MacBook Air 2020? If yes then how. Coz I can't see any pencil device in bluetooth settings. Thanks.
bryanr_13,2023-03-03 21:29:28+00:00,@Lanmark21 @AppleSupport @TwitchSupport Just think of it as being a tier 2 or 3 without the extra bling.
AppleSupport,2023-03-03 21:26:28+00:00,@uchichiharu Hi! Thank you for reaching out. We want to make sure we’re on the same page. Does this happen when any widget you attempt to add to your Lock screen? What iOS do you currently have installed? You can confirm by going to Settings > General > About. Let us know in DM. https://t.co/GDrqU22YpT
AppleSupport,2023-03-03 21:23:57+00:00,"@64Tdm3 Hi there. We’ll be glad to assist you with your Apple ID. To sign out of your Apple ID on an iPhone, you’ll need to follow the steps here: https://t.co/8q2Ads7XSK If you need further instruction, send us a DM: https://t.co/GDrqU22YpT"
GauravYaduanshi,2023-03-03 21:20:49+00:00,I have an iPad mini 2 and it’s lock in iCloud activation lock and don’t have any bill and apply I’d . Which thing I can do plz suggest @Apple @AppleSupport @AppleEDU
GuyonClovis,2023-03-03 21:18:14+00:00,"@AppleSupport Since the recent update, the “notification modifier” button has disappeared on all apps. Is there a way to make it appear again?"
AppleSupport,2023-03-03 21:14:57+00:00,@GuyonClovis We offer support via Twitter in English. Contact us for help in your preferred language here: https://t.co/IBIY3vMgPj You can also join our Apple Communities here: https://t.co/RkpgWtFqBw
LuSchmoo,2023-03-03 21:14:37+00:00,"@_Mudwolf @AppleSupport Hello, try and update to iOS 16.4 beta 2, then see if this fixes it. If it doesn’t, try using a computer to downgrade to iOS 16.3.1. Did this happen before you updated to iOS 16.4?"
LuSchmoo,2023-03-03 21:11:47+00:00,"@stuherbert @AppleSupport What I would do is if I was signing in on my iPad and the verification code popped up on it, I would kind of say the code back to myself and then type it in. This might be the best way for you to do it. What happens if you click okay from another device?"
AppleSupport,2023-03-03 21:08:56+00:00,"@seh1998_ We're happy to guide you to a team that specializes in this area. For additional assistance with sales related inquiries, reach out to our Online Sales Support team here: https://t.co/8yjRd1Xo0i"
AppleSupport,2023-03-03 21:07:01+00:00,"@SoCaliLiberal We’re happy to help. You can the devices compatible with the Decoded Leather Magnetic Pencil Sleeve for Apple Pencil here: https://t.co/xcvHRfzx5W If you need more help, meet us in DM to continue. https://t.co/GDrqU22YpT"
LuSchmoo,2023-03-03 21:06:42+00:00,"@LRLassen @AppleSupport Hello, before you updated, do you know what software version you were already on? If you were on iOS 15, and this is expected. Free-form was a thing in iOS 16.2, but you may also see it when you first update to a newer version, like 16.3.1. Hope this clarifies"
AmandaRisser44,2023-03-03 21:04:35+00:00,"@SamsungCanada @RogersHelps another experiment.
What are the results?
@AppleSupport
who won? https://t.co/oNWNng8m59"
cammywhammy18,2023-03-03 21:03:56+00:00,Okay @AppleSupport @Apple and @SIRIUSXM - I need you to get on the native HomePod integration because it’s the only hiccup I have in not dumping Alexa immediately!!!
AppleSupport,2023-03-03 21:01:46+00:00,@theesco We’re here happy to help. Please meet us in DM and we’ll continue working from there. https://t.co/GDrqU22YpT
r_m_walker,2023-03-03 21:00:00+00:00,@AppleSupport why do I make a #Geniusbar appt when I just sit here waiting long after my appt time comes and goes? Seems counter productive for both of us.
shrini__patil,2023-03-03 20:58:57+00:00,"@AppleSupport @Apple iPhone 14pro looks like a shit mobile with hell problems with display and battery, can we expect any quick fix??"
AppleSupport,2023-03-03 20:57:45+00:00,@nick_haering Thank you for reaching out to us. We would like to see what we can do to help. Get back to us in DM using the link below and give us more information and why you think the DoorDash website is causing your MacBook to crash. We can go from there. https://t.co/GDrqU22YpT
Chicagofan76,2023-03-03 20:50:01+00:00,@AppleSupport Not launching at all. Blank screen then goes back to desktop after 15-30 seconds bb
Lanmark21,2023-03-03 20:49:55+00:00,"@r0cksss_ @JKSully313 @AppleSupport @TwitchSupport It’s memish for me at this point 😂 . 5 years on Twitch… “It’s 1$ cheaper on desktop.” I know it’s people being helpful, but I will not break. https://t.co/MUTL1pdRY1"
AppleSupport,2023-03-03 20:49:09+00:00,"@michcoll Hello! We can look into your battery concerns with you. To start, we always recommend users go through our helpful tips here: https://t.co/KDbDA7HHjw
Then, DM us which iOS version you have and how long ago you may have updated. We’ll start there. https://t.co/GDrqU22YpT"
oftenreight,2023-03-03 20:47:57+00:00,@AppleCard @AppleSupport Why can't you send replacement cards overseas like every single card company does?
AppleSupport,2023-03-03 20:46:39+00:00,"@papafucius Thank you for reaching out. We would like to see what we can do to help. Get back to us in DM using the link below. Let us know what iOS is on your phone, is this happening when on cellular data as well? We can then work from there for a resolution. https://t.co/GDrqU22YpT"
r0cksss_,2023-03-03 20:45:41+00:00,@Lanmark21 @JKSully313 @AppleSupport @TwitchSupport What is this vendetta against computer bro?
Lanmark21,2023-03-03 20:42:17+00:00,@JKSully313 @AppleSupport @TwitchSupport Absolutely not.
AppleSupport,2023-03-03 20:40:44+00:00,"@shotbytahliq Hi there, we’d be happy to help out with your Mac’s battery life. Our page here can assist with providing some helpful suggestions for maximizing the battery life: https://t.co/AleJzVUgCD
If you happen to need additional help, please DM us. https://t.co/GDrqU22YpT"
JKSully313,2023-03-03 20:37:17+00:00,"@Lanmark21 @AppleSupport @TwitchSupport Go into your browser, select desktop mode and subscribe from there. It’s $1 cheaper per sub and less issues"
ZupiterMonk,2023-03-03 20:33:48+00:00,"@filen_io these 3 sh*tty files syncing since last 3 months. @AppleSupport @Apple must ban this sh*t software cloud service, it's not reliable and good app service, stop their products to get installed on the macbooks and windows @Microsoft https://t.co/wGbBJQyo6V"
Lanmark21,2023-03-03 20:33:13+00:00,"Been having trouble resubbing to streamers for a year or so now, having to subscribe multiple times a month, or being locked from resubbing until gifted. Apparently I’ve been double and triple subbed to people all this time. @AppleSupport huge help. @TwitchSupport be better. https://t.co/Hniqwa1qyi"
seh1998_,2023-03-03 20:30:56+00:00,@AppleSupport @Apple I can't find any info about if there's financing options for iPads in Canada. Can someone help?
Title9Jen,2023-03-03 20:28:53+00:00,@CaliLiliIndies @bee_are_ @Apple @AppleSupport Can check this in settings battery consumption sort by app.
SoCaliLiberal,2023-03-03 20:28:23+00:00,@AppleSupport Is the Decoded Leather Magnetic Pencil Sleeve for Apple Pencil compatible with the Magic Keyboard folio case for iPad Pro 12.9‑inch (6th generation)
theesco,2023-03-03 20:28:14+00:00,@googledrive @AppleSupport Please for the love of God Fix GoogleDrive for Mac. This service has completely bit the dust since you recently forced the change on all of us. PDF syncing is completely unreliable.
AppleSupport,2023-03-03 20:22:27+00:00,"@Chicagofan76 Thanks for contacting us. We want to help. Will Safari not launch at all, or is it not loading web pages once opened? Which model of iPhone and version of iOS is this happening with? Send us a DM and let us know and we’ll work with you from there. https://t.co/GDrqU22YpT"
TweeterGuyJ,2023-03-03 20:18:11+00:00,@AppleSupport absolutely ducking disgusting. You’ve taken multiple payments from my card without my permission and refuse to refund them. This is theft. You do not have permission to help yourself to my money.
AppleSupport,2023-03-03 20:09:56+00:00,"@Indian0595 We want to help with your iPhone. Try the steps in this resource which are geared towards your issue: https://t.co/xk0GBMpjqW
Send us a DM if you still need help, so we can work together on a solution. https://t.co/GDrqU22YpT"
iamSnippa,2023-03-03 20:08:40+00:00,Seriously... how am I supposed to access accounts that I secured with @Google Authenticator when I cannot do this? @AppleSupport https://t.co/oJmlhHBiUA
AppleSupport,2023-03-03 20:04:06+00:00,"@goldbcklechaser Hi there. We’ll be glad to help you out. It may not be referring to the last passcode used on the device. It could be referring to a previous passcode, or another passcode that was used on a device connected to your account. If you need further help, DM us: https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 23:57:41+00:00,"@tweeetbro We’d be happy to look in to this with you!
Could you please send us a DM with what device and browser you’re using?
These details will help us narrow down what may be happening and what options we have. https://t.co/GDrqU22YpT"
tweeetbro,2023-03-04 23:45:03+00:00,"Seeing a large number of HTTP 404s on @Apple ‘s website. Example - https://t.co/CBZpEofvRc
The ‘Buy’ link when you go make an Airpad purchase also gives you a Page Not Found. @tim_cook @AppleSupport https://t.co/hmd9alMoi8"
AppleSupport,2023-03-04 23:42:55+00:00,@donaldknewell We’d like to look into this with you. Please send us a DM and tell us more about what happened. We can investigate further there. https://t.co/GDrqU22YpT
QuesterMark,2023-03-04 23:39:54+00:00,"Hey, @AppleSupport @apple
The Apple Store app wouldn’t let me complete a purchase. But I accessed my cart on https://t.co/mXYMBa7QoH in Safari on the same iPhone and was able to complete my purchase. I deleted the app. I don’t expect any support here, I just wanted to tell you."
AppleSupport,2023-03-04 23:38:06+00:00,"@JK__Saleem Hi there, we can offer some assistance. If you are seeing unknown charges, this can help you identify them: https://t.co/4WXv2uYF0X
If something else is occurring, join us in DM with more information. We’ll continue there. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 23:37:54+00:00,"@RuiNtD Thank you for letting us know. We’d like to check into this further with you. Please meet us in DM, so we can get some additional information. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 23:36:39+00:00,"@SigniusNetworks We’d like to help. To help determine next steps, let us know in DM which version of iOS is installed on the iPhone. You can find that under Settings > General > About. https://t.co/GDrqU22YpT"
donaldknewell,2023-03-04 23:31:32+00:00,"@AppleSupport Why didn’t you call me back like you said you would. I don’t even want to talk, I just want my phone back."
ryanfellman28,2023-03-04 23:28:12+00:00,"@AppleSupport Ok but how is it different than pictures? When my phone runs out of space, the pictures stay on my phone but I have to load them from iCloud to see them. My notes are just deleting…"
RuiNtD,2023-03-04 23:23:31+00:00,"@AppleSupport I don’t have any profiles, but I still have access to the iOS *Developer* Beta. Again, I don’t have a developer account. https://t.co/XCZhBvOx0A"
AppleSupport,2023-03-04 23:09:37+00:00,"@thinds42 We’d be happy to look in to any issues that you’re having!
Could you please send us a DM with what device you’re using iMovie on and which OS version it’s running so we can get started? https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 23:05:49+00:00,"@noalias We’d be happy to help! You still can delete Tab Groups. You can find the steps outlined in this page on how to delete Tab Groups: https://t.co/HNw8n32CST
DM us if you have additional questions. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 22:52:06+00:00,"@BrcwJel We can help point you in the right direction for support. If your Apple ID is inactive, you’ll want to connect with our Account Security team using this link: https://t.co/NpQJidgpDA or by dialing the number for your region here: https://t.co/FKTd4AvuK6"
AppleSupport,2023-03-04 22:49:47+00:00,"@mark_oc We’re glad you reached out! Let’s look into this more together. To do that, join us in DM where we can gather additional details to help. https://t.co/GDrqU22YpT"
sprinkles19025,2023-03-04 22:45:17+00:00,@shultquist @BMWUSA @BMW @BMWGroup @Apple @AppleSupport We are past that. It’s been reported since at least last June.
shultquist,2023-03-04 22:44:21+00:00,"@BMWUSA @sprinkles19025 @BMW @BMWGroup @Apple @AppleSupport So, what's a reasonable timeline for a fix? It's all on the car side, so it's on BMW to address. It's been going on for a year. How soon?"
sprinkles19025,2023-03-04 22:44:10+00:00,"@SeeMeBe @SumanChks @BMW @BMWUSA @BMWGroup @Apple @AppleSupport @bmwcanada @BMW really needs to get this fixed, at at least give a better update than “we’re working on it” https://t.co/1y5kXfn80U"
AppleSupport,2023-03-04 22:42:32+00:00,"@___queensteaaa We’re glad you tagged to let us know about the issues you’re experiencing, and want to help. Since menu options can vary, which software version shows in Settings > General > About?
DM to let us know, and we’ll meet you there to continue. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 22:40:50+00:00,"@Twiminy We’d be happy to help out! To cancel the subscription, follow the steps here: https://t.co/7HHLZUKvv2 You can also request a refund for the subscription using: https://t.co/5f3dJAu0So DM us any additional questions. https://t.co/GDrqU22YpT"
mark_oc,2023-03-04 22:40:43+00:00,Wondering @AppleSupport why on TV+ Liaison I can’t turn off subtitles? Tried Auto and English. I need them for the French parts but not the English. Watching on @skytv app if that makes a difference. Never had same issue on other series.
AppleSupport,2023-03-04 22:35:31+00:00,"@nutjsdev No problem. If you’re unable to send a DM, you can reach out us using the following link: https://t.co/IBIY3vMgPj https://t.co/GDrqU22YpT"
JossBiggins,2023-03-04 22:29:55+00:00,why the fffaaccckkk is there no Papaya emoji? @Apple @AppleSupport
AppleSupport,2023-03-04 22:25:45+00:00,"@RobertP091161 Hi. We understand it can be frustrating when something doesn’t work as expected, and we’d like to help.
Meet us in DM, and we can continue from there.
Let us know which iTunes version you’re using.
And, are these the steps followed? https://t.co/SzT7DqummK https://t.co/GDrqU22YpT"
RobertP091161,2023-03-04 22:14:40+00:00,@AppleSupport I am so sick of windows iTunes not detecting my iPhone 12. I have restored and reset my iPhone. I have reinstalled iTunes for windows. I have gone to Apple support . It worked while on the phone with Apple support but then it quickly disappeared. I am at my wits end
AppleSupport,2023-03-04 22:05:29+00:00,"@talleypretty We’re here to help. Your Apple Watch should mirror your iPhone, if you have it set up this way. If you have your Apple Watch already set to mirror your phone, send us a DM and we’ll take a closer look at this with you. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 21:58:28+00:00,@compasolo Hey there. Thanks for reaching out to us. We are always happy to help where we can. What error if any do you get when you try to access the content on your iPad? Which software version are you currently running? Let us know in DM and we’ll work with you there. https://t.co/GDrqU22YpT
AppleSupport,2023-03-04 21:57:01+00:00,"@thedonofsorare Hello!
We’d like to help.
Meet us on DM and let us know what device this is happening on and and the current OS on that device and we’ll continue troubleshooting in the DM. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 21:45:45+00:00,"@hina3794 We’re here to help. If you’re having an issue with your iPad, please send us a DM and include as many details as possible, so that we can assist you. Please include which iPad and version of software you’re using. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 21:42:45+00:00,"@Aaron_Merry15 We want to help with your iPhone. Try the steps in this resource which are geared towards your issue: https://t.co/bCcnzJAWMC
Send us a DM if you still need help, so we can work together on a solution. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 21:40:00+00:00,@DianeMArtsy Thanks for the information. Please reach out using this link to get additional support: https://t.co/IBIY3vMgPj
DianeMArtsy,2023-03-04 21:39:58+00:00,@GrmKehinde @AppleSupport @lilliansupport Omg really?!! How did she helped you solve the issue?
AppleSupport,2023-03-04 21:39:27+00:00,"@S_M_O_O_K Hi. We want to point you in the right direction for feature requests.
You can leave feedback using this link: https://t.co/eTPVYVFyd8 Select your device, as there isn’t an Apple ID category.
You won’t get a reply, but your feedback will be sent to the correct place."
AppleSupport,2023-03-04 21:38:42+00:00,"@Keek_DaSneak We’re here to help you! You mentioned resetting Face ID. To help us better understanding, were you able to successfully set up Face ID again with the steps here: https://t.co/MDegySCE5u
Let us know in DM to continue. https://t.co/GDrqU22YpT"
DianeMArtsy,2023-03-04 21:32:32+00:00,@AppleSupport I am unable to private dm @AppleSupport
DianeMArtsy,2023-03-04 21:31:29+00:00,"@AppleSupport Ipad Pro 11 inch (2nd gen) and Apple pencil 2. Never had a problem with connecting pencil. Few days ago I updated to ios 16, and the pencil cant connect at all anymore. I have tried restarting the device and forget the pencil in bluetooth. The ipad just wont detect the pencil"
Aaron_Merry15,2023-03-04 21:31:29+00:00,@AppleSupport I just had battery replaced on IPhone 11 but plugged in and black screen. Will it take a while turn on since it’s brand new ?
AppleSupport,2023-03-04 21:28:11+00:00,"@ZarMamma Hi there!
You’ve come to the right place for help. Meet us in DM and provide us some details of what is going on and we’ll continue troubleshooting in the DM. https://t.co/GDrqU22YpT"
donaldknewell,2023-03-04 21:25:48+00:00,"@Applesupport why are you holding my phone hostage. You have the weirdest, least-capable, support organization I have ever dealt with. What is wrong with you guys?"
shultquist,2023-03-04 21:23:00+00:00,"@BMWUSA @sprinkles19025 @BMW @BMWGroup @Apple @AppleSupport There is a SIB with a fix showing in the EU. More than iDrive, since it's dead reckoning from the GNSS as required by wireless CarPlay (and Android Auto) off, so I assume an update to the GPS module may be in play. Fix soon? Drove on a RR today. @BMW @BMWGroup @BMWUSA https://t.co/lc3LdzMxFW"
chrisatlatenite,2023-03-04 21:20:38+00:00,"@bluelensllc @AppleSupport Ummm, nope, quits fine here."
AppleSupport,2023-03-04 21:19:55+00:00,"@loris_fllt We can help look into this with you. Since noticing the high amount of System Data, have you tried restarting with the steps here: https://t.co/v8UilXI2QI This can often help.
Let us know in DM. https://t.co/GDrqU22YpT"
AminZannon,2023-03-04 21:19:53+00:00,"@mikepompeo What?! The iPhone15?
@AppleSupport @Apple Can you guys confirm?"
ZarMamma,2023-03-04 21:15:50+00:00,"@AppleSupport I don’t even need support, I just want my money back! The 🍎 MacBook Air M2 256GB is a piece of absolute GARBAGE….!!!!! I have NEVER had a slower, more retarded, useless 💩 laptop in all my life! I really wanted you to know that. Is there a warranty or something?"
AppleSupport,2023-03-04 21:13:58+00:00,"@femmeT_T We’d like to assist and look into this. Are you experiencing this with the front camera? Does this occur with a specific app?
Send us a DM and we’ll provide additional options to help fix this. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 21:11:10+00:00,"@marehorst We’d be happy to assist with Safari!
Could you please DM us with which device you’re using so we can get started on this? https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 21:04:42+00:00,"@DianeMArtsy Hey there. We’d like to know more about the connectivity issues you’re experiencing. Please join us in DM with more details, including your iPad and Apple Pencil model. We’ll meet you there. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 20:57:26+00:00,@ProphetCurtis We are glad to hear you were able to schedule an appointment in store. Feel free to reach back out if you need any more help from us.
DianeMArtsy,2023-03-04 20:53:40+00:00,"Anyone have problem connecting apple pencil to ipad? 2 years no problem. Updated to ios 16, instant connection problem.
I wanna cry so bad😭😭 i need to use the pencil for drawing.
Apparently many people face this problem and @AppleSupport cant really do anything."
cpltalk,2023-03-04 20:47:17+00:00,"@AppleSupport I don’t need help I am pointing out a usability problem that should get fixed (the error message is wrong)
If only there was a way to notify without this discouraging overhead :("
AppleSupport,2023-03-04 20:45:40+00:00,@slutouist91 We’d be happy to provide additional clarification. Please reach out to us in DM and we’ll continue there. https://t.co/GDrqU22YpT
michellepeng__,2023-03-04 20:44:31+00:00,"@AppleSupport ridiculous that my 2020 MacBook Pro stopped working out of nowhere, with no signs of breaking down beforehand. I went to the Apple store the next day and was told I could either spend $900 to repair it or buy a new MacBook. I had to buy one since I needed it for an"
AppleSupport,2023-03-04 20:43:40+00:00,"@baski3000 Hello, we’d like to provide some options. Take a look at the steps here to help with the encrypted password: https://t.co/K1PFQoQHRH
If more help is needed, please DM us and we’ll take a closer look. https://t.co/GDrqU22YpT"
IchmagZ90190973,2023-03-04 20:41:05+00:00,"@finfeverfishing @AppleSupport Be silent bot, I don’t even have an Instagram Account."
AppleSupport,2023-03-04 20:40:25+00:00,"@Eldar_Siboni Hello, we’d like to help. Meet us in DM and let us know what device we’re working with, as well as what version of software its running. We’ll do our best to assist from there. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 20:40:07+00:00,"@ryanfellman28 iCloud storage does not increase the internal storage of your device directly. You can read more about the difference with iCloud and internal storage here: https://t.co/iyZCib6rzS
Send us a DM if you still have questions. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 20:39:55+00:00,"@RuiNtD We want to help. Generally, there would be a profile installed on your device that would provide access to beta versions. If you’d like, you can remove that under Settings > General, and tap VPN & Device Management.
DM us if you have more questions. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 20:39:40+00:00,"@GG3BKLYN We’d like to help! If you need to cancel a subscription, you’ll want to follow the steps outlined in this page to successfully cancel the subscription: https://t.co/7HHLZUKvv2
DM us if you are still unable to cancel. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 20:39:25+00:00,"@adcogfx Hi there. We want to help with getting you to the right place for a disabled Apple ID. This page has what to do, depending on the complete error message received. https://t.co/91bluzZsU1
DM us if you’re having issues with either option, and we’ll help there. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 20:38:25+00:00,"@artistpritams We’d be happy to help explore issues you’re having with iCloud. To help us get started please DM us with which device/OS version the issue is occurring on, and further details on what you’re experiencing. We’ll assist further from there. https://t.co/GDrqU22YpT"
willhaddockjr,2023-03-04 20:37:47+00:00,@ianzelbo FACTS!! @Apple @AppleSupport
AppleSupport,2023-03-04 20:37:37+00:00,"@brandonorb1 Happy to help! If you’re seeing charges that you’re not familiar with, the steps here may help with identifying them: https://t.co/Udf3mWoKiY
If you need additional help, let us know in DM. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 20:36:52+00:00,"@ATrainRolls We’d love to help. What happens when you try to play your music? The more details we have, the better. Please meet us in DM and we’ll continue working from there. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 20:36:37+00:00,"@nutjsdev We’d be happy to assist in any way that we can!
Could you please send us a DM with some details of what you’re experiencing so we can get started? https://t.co/GDrqU22YpT"
ProphetCurtis,2023-03-04 20:36:29+00:00,@AppleSupport I have an appointment scheduled for Monday. Wish me luck.
IchmagZ90190973,2023-03-04 20:36:25+00:00,"@AppleSupport I mean, my Twitter acc is banned from sending messages from my Twitter account to you, per DM."
baski3000,2023-03-04 20:33:14+00:00,@AppleSupport Hi Apple Support. Could you please tell me what to do if I don’t remember the protected password from my I phone backup which is on the iMac
briiiit_,2023-03-04 20:32:48+00:00,"99% sure I’m making the switch to @Spotify. Sorry @AppleMusic @AppleSupport. You just couldn’t figure out a resolution to my issue.
And TBH…in my free trial w Spotify, I’m finding the electronic music selection is far superior🪩"
slutouist91,2023-03-04 20:30:41+00:00,@AppleSupport so is that a yes i can use a gift card?
AppleSupport,2023-03-04 20:28:21+00:00,"@IchmagZ90190973 Happy to assist! If you’re unable to send messages, you’ll want to try the steps outlined in the following page to help with sending messages from your device: https://t.co/PtVg7mR44M
If the issue remains, send us a DM with more details. https://t.co/GDrqU22YpT"
ryanfellman28,2023-03-04 20:23:14+00:00,@AppleSupport I don’t have plenty of storage. That’s why I spend like $15/month for iCloud????
AppleSupport,2023-03-04 20:22:24+00:00,"@slutouist91 We want to help. Since iCloud+ is a subscription, you would need to have a payment method on file. However, you can use your account balance to make the payments each month as long as your have enough to cover the total. For more help, meet us in DM https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 20:22:24+00:00,@ProphetCurtis You’re very welcome! Let us know if we can help in the future.
AppleSupport,2023-03-04 20:16:20+00:00,"@ryanfellman28 We’d like to help! Have you checked to see if you have plenty of phone storage on your device: https://t.co/I8OzZQ9O2J . This will help narrowing this issue down.
DM us and let us know what you see when checking on this, and we’ll meet you there. https://t.co/GDrqU23wfr"
djspellmaster,2023-03-04 20:16:13+00:00,"@AppleSupport 👍👍 Thanks👌Check out your Apple Watch upgrade process too, did two recently and it was also quite painful needing two attempts each time to get it to work, s4 to s8 and s5 to s8"
Shawn74Upchurch,2023-03-04 20:15:42+00:00,@AppleSupport The wallpaper parallax effect known as perspective zoom has been broken since OS 16 update. Please fix
AppleSupport,2023-03-04 20:13:35+00:00,@djspellmaster Sounds good. We’ll be here if you need more help. Just send us a DM if needed. https://t.co/GDrqU22YpT
AppleSupport,2023-03-04 20:11:05+00:00,"@SoFlaKicks We want to help! If your screen isn’t working properly, try the steps in this resource that could help resolve the issue: https://t.co/JYCqZMB6y1 For more help, meet us in DM. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 20:05:07+00:00,@timcock02 We want to help with your iPhone. Send us a DM with the iOS version you are running so we can work together on a solution. https://t.co/GDrqU22YpT
slutouist91,2023-03-04 20:03:43+00:00,@AppleSupport can i buy icloud storage with apple gift cards? please tell me before i waste my money
ProphetCurtis,2023-03-04 20:00:43+00:00,@AppleSupport Thank you for following up. I restarted my MacBook. I think I have a call scheduled for 3pm. Not sure if I scheduled correctly
AppleSupport,2023-03-04 19:59:37+00:00,"@ProphetCurtis If you still need assistance, send us a DM so we can work together on a solution. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 19:56:51+00:00,"@marilynnatalii Happy to help! Make sure that your device is updated with the latest (16.3.1) version of software. Also, check to see if you need to update your carrier settings: https://t.co/r9gl94wlYw . This will help to isolate this issue.
DM us if the issue remains. https://t.co/GDrqU22YpT"
SoFlaKicks,2023-03-04 19:54:53+00:00,"@AppleSupport
Tech question on iPad mini 2. Screen when initially unlocked is fine, then glitches. If it was constant it would obviously be a screen issue but this feels like a software glitch? https://t.co/vJ2vUunZlx"
djspellmaster,2023-03-04 19:54:33+00:00,"@AppleSupport Yea, have switched to transfer via iCloud. That process asked all the questions upfront seems to be going through now 🤞"
AppleSupport,2023-03-04 19:53:21+00:00,"@cpltalk Thank you for reaching out. If you have a specific issue you need help with, you can get back to us in DM using the link below and we will be happy to help. If you want to provide feedback to Apple, you can use this link to do that: https://t.co/eTPVYVFyd8 https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 19:53:18+00:00,"@djspellmaster Hello, we’d like to help. To confirm are you keeping your two devices next to each other? This is required in order for Quick Start to complete.
Please send us a DM and we’ll work with you there. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 19:52:48+00:00,"@B_maier Hi there, we’d be happy to help out. You should be able to listen to your purchased music from the Library tab, or by making a playlist to listen to.
What happens when you do so?
Let us know in DM. Include any error messages, and we’ll continue from there. https://t.co/GDrqU22YpT"
timcock02,2023-03-04 19:52:46+00:00,@AppleSupport My iPhone keeps restarting randomly by itself
Vikitoriya81,2023-03-04 19:47:44+00:00,"#BTS #JIMIN #Jimin_FACE_IsComing
Hi.@Shazam @AppleMusic @AppleSupport, Jimin's Christmas love from BTS suddenly for some reason is no longer searchable on Shazam. This has been available before. https://t.co/PMnyxvJWuO"
ProphetCurtis,2023-03-04 19:47:41+00:00,@AppleSupport Yes I have restarted it.
AppleSupport,2023-03-04 19:46:36+00:00,"@ProphetCurtis Hi. We want to help with your MacBook Pro and the display, so you can use it as expected again.
Have you restarted your Mac since noticing this? It’s an easy step, but it really can help to resolve issues. https://t.co/farxcTQQWs
DM us if still an issue. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-04 19:41:20+00:00,"@CadenClough We want to help ensure Face ID is working well for you. It sounds like you’ve tried some good steps already. We have a few more here that may help, but please DM us if it persists and we’ll explore it further: https://t.co/ujQme4UPvH https://t.co/GDrqU22YpT"
snipergangrico,2023-03-04 19:39:45+00:00,@AppleSupport really $50 for this?🤨 https://t.co/fH3Uf6PcX3
morgan_adele,2023-03-04 19:36:33+00:00,@AppleSupport hi 😊… any chance you could get together with a hearing aid manufacturer to produce waterproof hearing aids? @MollyWattTalks @mollywatttrust - my son really needs this to happen 😊
CedarBrown,2023-03-04 19:33:08+00:00,"@AppleSupport Why do you work SO hard to prevent me from using your products? The path to Apple TV should NOT be mandated by hardware ownership. Changing my password is more difficult than developing time travel in my kitchen, why???"
a_153800,2023-03-04 19:31:41+00:00,"icloud Activation lock 🔒
iphone locked to owner ✅
iphone ipad ipod touch MacBook pro/Air iwatch unlock
iphone forgotten passcode
Our server can guarantee you that your device will be unlocked 💯 percent
Even if the @AppleSupport aren't doing anything👇
https://t.co/kZJxc4p0Vw https://t.co/XlMVUEG06d"
finjassauer,2023-03-04 19:31:03+00:00,"@ii_Giovanni @leokellr @AppleSupport lol our setups look kinda similar, I thought this was a photo of my setup at first https://t.co/txL6Gh9ueH"
ProphetCurtis,2023-03-04 19:29:50+00:00,@AppleSupport I need help ASAP. My screen is only bright on the bottom half of my MacBook Pro. It was fine yesterday and never fell. What can I do?
grimypreacha,2023-03-04 19:15:15+00:00,"@INMYTINYPANTS @AppleMusic @AppleSupport I haven't listened to NF so I can't comment on that but I doubt I'd like him more than Earl
SRS is probably his best but idk if most ppl will be able to get into his music with that first but I mean Earl doesn't make music for the mainstream anyway so it doesn't really matter ig"
INMYTINYPANTS,2023-03-04 19:11:49+00:00,@grimypreacha @AppleMusic @AppleSupport SRS is one of my favorite albums ever but he doesn’t have an album worse than the NF one
erick_unique,2023-03-05 23:56:52+00:00,@AppleSupport isnt it just a better idea to be normal and have a key for that
AppleSupport,2023-03-05 23:50:23+00:00,"@obidi_O Hey there. We definitely wouldn’t want you to be charged for anything you didn’t authorize.
Try locating the charge using the steps here: https://t.co/Udf3mWoKiY
Reach out to our Billing team next if you can’t find this charge: https://t.co/NpQJidgpDA"
GentaWaluyo,2023-03-05 23:43:05+00:00,@tim_cook @Apple @AppleSupport when are you bringing back live wallpapers for Lock Screen? #future #paidpartnership #smartspaceawards
SeanOfKelly,2023-03-05 23:30:42+00:00,@AppleSupport Thank you. Rather figure it out myself. I like troubleshooting 😉
AppleSupport,2023-03-05 23:24:31+00:00,"@Nutty_AllWork We’d like to help if you are noticing any issues when making calls with your Apple devices.
Please send us a Direct Message with more details to get started: https://t.co/GDrqU22YpT"
AppleSupport,2023-03-05 23:21:46+00:00,"@Trigga229 Hi there. We are happy to help. To gain a better understanding, what device are you using and what software version is it on? Are you attempting to add a Text Replacement? Join us in DM with those details to further assist you. https://t.co/GDrqU23wfr"
AppleSupport,2023-03-05 23:20:20+00:00,"@SeanOfKelly Well done finding a solution!
If you have questions in the future, we’ll be here for you.
Take care."
AppleSupport,2023-03-05 23:20:01+00:00,"@Pauldjennings Thanks so much for reaching out to us with your question. We appreciate you and your time. We hope you have a great rest of your day!
Feel free to reach out if you have any future questions or concerns. https://t.co/GDrqU22YpT"
PoliteIceCream,2023-03-05 23:18:05+00:00,@AppleSupport can this be done? iOS should be cooking friendly.
Pauldjennings,2023-03-05 23:10:18+00:00,@AppleSupport Thank you
superpixels,2023-03-05 23:08:16+00:00,Imagine if @AppleSupport provided support. I'd be able to ensure my son of 19 years actually stayed in my contacts! What a notion! https://t.co/fRFLaVzs9g
AppleSupport,2023-03-05 23:05:19+00:00,"@eduardolomb We’ll be happy to assist. Check out the “View HomeKit Secure Video footage on your Apple TV” section of the following page for information: https://t.co/O3jJbxAl5b
If you have questions or need help, meet us in DM. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-05 23:02:30+00:00,"@ChefFabrizio Hi there. We’d like to learn more to see how we can help. Which device do you have and which software version is it running? Which app were you using to attempt to watch content together? DM us with details, and we’ll take a closer look from there: https://t.co/GDrqU22YpT"
iMinaCasper,2023-03-05 22:55:55+00:00,"@AppleSupport Delete last number only !!!!!!!
if i want to delete 1st number what can i do now ?"
AppleSupport,2023-03-05 22:50:44+00:00,@_samcalhoun Hi there. We are happy to help. Join us in DM with the exact Powerbeats model you have to provide the next best steps. https://t.co/GDrqU22YpT
svpermcn,2023-03-05 22:48:50+00:00,@queenmayoslay @BillGates @Apple @AppleSupport what…………..
SeanOfKelly,2023-03-05 22:48:42+00:00,@AppleSupport I actually figured it out. Removed the card under My Watch-Wallet-Apple Pay and immediately re-added in the app. It took. Thanks for the reply
CalvinSquires,2023-03-05 22:48:24+00:00,"hey @AppleSupport @apple @tim_cook for years Siri pronounces “Dr” in street names not as “Drive” but as “dirv”. Probably an easy fix right?
#AttentionToDetail #OhSiri"
svpermcn,2023-03-05 22:46:06+00:00,@queenmayoslay @BillGates @Apple @AppleSupport ya hes a tree h can see the lines on his skin thats the tree stuff
svpermcn,2023-03-05 22:45:16+00:00,@queenmayoslay @BillGates @Apple @AppleSupport ya… revolutionary right
queenmayoslay,2023-03-05 22:44:57+00:00,@svpermcn @BillGates @Apple @AppleSupport WHAT
svpermcn,2023-03-05 22:44:47+00:00,@queenmayoslay @BillGates @Apple @AppleSupport steve is a tree
svpermcn,2023-03-05 22:44:30+00:00,@queenmayoslay @BillGates @Apple @AppleSupport using technology
queenmayoslay,2023-03-05 22:44:21+00:00,@svpermcn @BillGates @Apple @AppleSupport i thought that was trees
queenmayoslay,2023-03-05 22:44:11+00:00,@svpermcn @BillGates @Apple @AppleSupport how did a gate do that
svpermcn,2023-03-05 22:44:05+00:00,@queenmayoslay @BillGates @Apple @AppleSupport invent apple
MiaPrincepessa,2023-03-05 22:44:05+00:00,"@postrugmalone @AppleSupport @AIPESnft_ In my head like a melody everyday...."""
queenmayoslay,2023-03-05 22:43:52+00:00,@svpermcn @BillGates @Apple @AppleSupport what job did steve do
svpermcn,2023-03-05 22:43:27+00:00,@queenmayoslay @BillGates @Apple @AppleSupport no thats steve jobs…..
AppleSupport,2023-03-05 22:43:14+00:00,"@Olumide_Abina Thanks for reaching out.
If you can't add a payment method, make sure the payment you’re using is accepted in your country or region. This page should help: https://t.co/wwiEavGWt7
DM us if you need further assistance. https://t.co/GDrqU22YpT"
queenmayoslay,2023-03-05 22:43:13+00:00,@svpermcn @BillGates @Apple @AppleSupport did he not invent apple
svpermcn,2023-03-05 22:42:57+00:00,@queenmayoslay @BillGates @Apple @AppleSupport why did you tag bill gates…
queenmayoslay,2023-03-05 22:42:37+00:00,@e_tomlins @BillGates @Apple @AppleSupport they are fr
queenmayoslay,2023-03-05 22:41:44+00:00,just went through the health app for the first time and made this art as inspiration @BillGates @Apple @AppleSupport https://t.co/PajGSPRwQK
AppleSupport,2023-03-05 22:41:28+00:00,"@JoannaBach We can help you find a solution. Please start with these troubleshooting steps before testing if your iPhone can power on again: https://t.co/bCcnzJAWMC
If the issue continues, please send us a DM for more assistance: https://t.co/GDrqU22YpT"
fzolhayat,2023-03-05 22:40:57+00:00,"@AppleSupport You left me no choice! Remember that 😡
#StealingMoney"
ShyamPatelN,2023-03-05 22:40:31+00:00,@AppleSupport why Apple Pay is not available in India?
AppleSupport,2023-03-05 22:39:28+00:00,@mimilee_CA Hello. Thank you for reaching out. We’ll be happy to help. The following article can help report phishing attempts: https://t.co/U9IFKYxXFa DM us if you have additional questions. https://t.co/GDrqU22YpT
postrugmalone,2023-03-05 22:39:11+00:00,"@MiaPrincepessa @AppleSupport @AIPESnft_ If the clock isn’t there, does time really move??"
eduardolomb,2023-03-05 22:38:12+00:00,"Hey @AppleSupport can I see a live feed from a HomeKit compatible camera on an Apple TV located remotely? I tried with one on site and it works. The one remote only shows notifications, I can't see the live image."
AppleSupport,2023-03-05 22:35:12+00:00,@kaaim_s Hello there! We offer support on Twitter in English only. We’ll point you in the right direction. You can reach out to us here in your preferred language: https://t.co/IBIY3vMgPj or feel free to join us in Apple Support Communities: https://t.co/RkpgWtFqBw
AppleSupport,2023-03-05 22:34:16+00:00,"@zefffirelio We’re confident we can assist. Send us a Direct Message, we’ll continue working together from there. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-05 22:28:27+00:00,"@MikeRoda We’re here to help. To continue working with us, send us a Direct Message. https://t.co/GDrqU22YpT"
SamiFathi_,2023-03-05 22:26:53+00:00,@JocelynPhilbert @AppleSupport You can actually https://t.co/ZHJr4Rju0I
AppleSupport,2023-03-05 22:25:12+00:00,@_TayBae__ We’d like to share some information on checking the status of a refund. You can follow the steps in https://t.co/6k1OBRFUV5 and additionally under “When will I get the money back?” will help cover when to expect this if you have a refund already sent.
mimilee_CA,2023-03-05 22:23:27+00:00,@Apple @AppleSupport do you have an email address I can forward you #phishing emails? https://t.co/LuHjzdiz6s
Amyok425,2023-03-05 22:19:47+00:00,"@AppleSupport I did contact Apple support… 3 times! The first two times, what they tried didn’t work and the last time they told me I couldn’t change because it’s an act for under 13 years old"
AppleSupport,2023-03-05 22:17:41+00:00,"@Amyok425 We’d like to share some direction for birthday updating. The article https://t.co/uPEKqFLyun for “If you need to change the birth date for someone below age 13, contact Apple Support.”, so you can contact our Apple ID support here: https://t.co/NpQJidgpDA"
AppleSupport,2023-03-05 22:15:45+00:00,"@JocelynPhilbert Hi there. We are happy to get you pointed in the right direction to submit feedback. Apple welcomes all thoughts, comments, and suggestions on any Apple product or services. Please click here to submit your feedback: https://t.co/ninSy5L4oM"
zefffirelio,2023-03-05 22:13:17+00:00,@AppleSupport It’s not working. I can’t press the touch control to skip a song like I normally could and I don’t get the options in settings anymore either. https://t.co/qDjgmR6xQ6
realdebugg,2023-03-05 22:11:55+00:00,"@AppleSupport Im having an issue regarding a student subscription to Apple Music, already dm'ed you the details. Phone support doesn’t seem to be all that helpful today"
JocelynPhilbert,2023-03-05 22:03:37+00:00,@AppleSupport Too bad we can't do that when dialing a phone number
AppleSupport,2023-03-05 22:02:44+00:00,"@CliffordWollam Hey there! We’d like to help you get pointed in the right direction for help with this. While we handle most technical issues over Twitter, when it comes to Season Passes, we ask that you reach out to us here: https://t.co/IBIY3vMgPj"
MikeRoda,2023-03-05 22:01:53+00:00,@AppleSupport Nope. I have the 1tb iPhone and it’s 50% empty.
AppleSupport,2023-03-05 22:01:29+00:00,"@zefffirelio Hello. We’re here to help. Follow the steps under the section of this article that states “Skip tracks” in order to resolve your issue. DM us below if the issue persists:
https://t.co/95UY15D4LQ https://t.co/GDrqU22YpT"
hueninghanji,2023-03-05 21:58:57+00:00,@wave_lax @Apple @AppleSupport I dont care
MiaPrincepessa,2023-03-05 21:57:03+00:00,"@postrugmalone @AppleSupport @AIPESnft_ That's an amazing point! It's much better than turning my phone off when I don't want to be rushed by ""time."""
AppleSupport,2023-03-05 21:54:09+00:00,"@qvokkaprince Hey, we’d be happy to point you in the right direction. You can replace your AirPods charging case using this link https://t.co/sjf0y6wAAN
Meet us in DM and we can continue there. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-05 21:53:43+00:00,"@JakWitDaLocs We’re here for you. To learn more, are these cellular or FaceTime calls? Which device and software version are you using? Let us know in a DM to continue and we’ll work towards a solution there. https://t.co/GDrqU22YpT"
zefffirelio,2023-03-05 21:52:15+00:00,@AppleSupport why can’t I click on my AirPods Pro anymore to forward to the next song or pause my music???
hueninghanji,2023-03-05 21:51:04+00:00,@AppleSupport HELP ME PLS
AppleSupport,2023-03-05 21:49:39+00:00,"@MikeRoda We understand how difficult it can be when things don’t work as expected. That dotted line usually means there isn’t enough storage on the iPhone to add that song.
Meet us in DM for troubleshooting.
How much storage do you have? https://t.co/gYnvVBgnsA
Thanks https://t.co/GDrqU22YpT"
hueninghanji,2023-03-05 21:46:47+00:00,Does anyone know how I can buy Airpods gen 3 but only charging case? Someone stole mine. Help me @Apple @AppleSupport https://t.co/GYcowV7qM0
AppleSupport,2023-03-05 21:46:39+00:00,"@AhmetOkanTasci Thanks for reaching out. We’d be happy to help with this. To learn more about this, which Apple Watch model do you have? Also, which version of watchOS do you have installed? Check in the Watch app > General > About. Let us know in DM. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-05 21:45:57+00:00,@SeanOfKelly We’re here to help. Please follow the steps in this article to help resolve your issue. DM us below if you need additional assistance: https://t.co/SZ2LgqbRYr https://t.co/GDrqU22YpT
lazarnicu,2023-03-05 21:42:00+00:00,@AppleSupport Wow that’s nice… too bad is not that intuitive… now I know!
CliffordWollam,2023-03-05 21:37:30+00:00,"Hey @AppleSupport MLS Season Pass isn't giving me the option to watch past games, only recaps! No official way to report a problem so Twitter it is."
AppleSupport,2023-03-05 21:35:53+00:00,"@Chris84Logsdon Thanks for tagging us, we want to help. Please meet in DM.
Let us know what you need help with. Thanks. https://t.co/GDrqU22YpT"
MikeRoda,2023-03-05 21:34:54+00:00,@AppleSupport What is wrong with your company
MikeRoda,2023-03-05 21:34:38+00:00,@AppleSupport I’m so frustrated with the system. I’m in tears right now. All I wanted is to add a new song I bought for my workout and I was unable and I’m late to the gym by an hour still without the song on my iPhone I’m crying I paid $2000 for this device but still can’t add a song.
MikeRoda,2023-03-05 21:31:40+00:00,"@AppleSupport I don’t want to sync everything I want to manually add specific songs that I want that’s all I’m asking for it’s an impossible task. I have been following all of your steps. Sometimes it works most of the time it doesn’t and when it works, it takes over an hour I just gave up."
AhmetOkanTasci,2023-03-05 21:31:04+00:00,"@AppleSupport hi i need a help. no one can fix this issue yet. can u do? I’ve an Watch, when i turn my watch to myself during ringing, the watch is turning down (volume down) . I don’t wanna this. how can we fix it"
AppleSupport,2023-03-05 21:22:36+00:00,"@chadkbh Hi there. We’ll be glad to look into this with you further. Send us a DM with some more details on what’s going on exactly, and we’ll help you out further from there: https://t.co/GDrqU22YpT"
pakaworld,2023-03-05 21:21:03+00:00,@AppleSupport Why is the calculator on iphones so left in the 80's?
AppleSupport,2023-03-05 21:18:51+00:00,"@HyjekStefan Allow us to assist. Use the following related page to identify these attempts and learn how to report them: https://t.co/U9IFKYxXFa
Meet us in DM and we can continue there. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-05 21:17:06+00:00,"@markgamache Hi there. We are happy to get you pointed in the right direction for feedback. Apple welcomes all thoughts, comments, and suggestions on any Apple product or services. Please click here to submit your feedback: https://t.co/eTPVYVFyd8"
AppleSupport,2023-03-05 21:16:06+00:00,@MikeRoda We’re happy to assist you with syncing to iTunes. Let’s make sure it is being done correctly by completing the steps listed here: https://t.co/bM2S6WVY12 . DM the results. https://t.co/GDrqU22YpT
NancyLouiseII,2023-03-05 21:13:12+00:00,"@apple: YOU WILL ONLY GET 77%, AND YOU WILL BE HAPPY!!!!!
They’ve already begun implementing the social credit system! Unreal!
👺 Fix it @AppleSupport 🫵😡"
AppleSupport,2023-03-05 21:12:51+00:00,"@JustPatrickIre Hi there. We are happy to help. If your Apple Watch is updating, leave it on the charger until it is done updating. If it is not responding, this article indicates how to force restart it that can help: https://t.co/021JvSp1WB
Join us in DM for more help. https://t.co/GDrqU22YpT"
CreatedByHaadi,2023-03-05 21:09:29+00:00,@abudaveed @Apple @AppleSupport Ahh I know this is bad but everyone is talking about iOS 16 particularly doing that
JTechEV22,2023-03-05 21:05:05+00:00,"@AppleSupport I didn’t know that, that’s useful to know."
johnvelezmac,2023-03-05 21:03:35+00:00,@AppleSupport your delivery service does not work. Please don’t try to do what you can’t do. Complete failure today. @tim_cook please look into this. Very disappointed on how your team handled something so simple.
JustPatrickIre,2023-03-05 20:59:44+00:00,@AppleSupport I see a lot of people with logo stuck on the series 3 Apple Watch lately - what is the fix for this? https://t.co/Wd7LmxwrEJ
AppleSupport,2023-03-05 20:56:39+00:00,"@SpinnyRin We’d like to share a helpful article for recognizing and reporting suspicious messages. We recommend looking over https://t.co/M0HZ36hfqI, and DM us if you have any questions. https://t.co/GDrqU22YpT"
Siraebymark,2023-03-05 20:55:16+00:00,"@ZelenskyyUa @AppleSupport @Apple 1,111,111,110/7 who may 1,111,111,109/6 51/52 @AppleSupport @Apple"
shubhamraje25,2023-03-05 20:53:55+00:00,"@AppleSupport @WorldTradePark Your reseller store in WTP Jaipur, India is the most horrible one. They keep customers waiting for long periods of time and don’t give clarity on questions you ask them. Some of the staff members are just unapologetically rude. (1/2)"
morgan_adele,2023-03-05 20:49:16+00:00,@ReSoundGlobal @AppleSupport @MollyWattTalks @mollywatttrust Thank you 😊… we’ve been advised over the years that they aren’t completely waterproof so we’ve hesitated as they’re expensive.. I assume they’ve improved over time 😊 would they be suitable for swimming? How much if under water can they take?
sinners_ride,2023-03-05 20:44:18+00:00,"Why there’s no option to switch between front and back cameras while making videos in #iPhone
We are paying a hefty amount and it doesn’t have this basic feature.
@theapplehub @Apple @AppleSupport @tim_cook"
INMYTINYPANTS,2023-03-05 20:40:15+00:00,It’s definitely fill him with lead not lean Apple Music not real yeat fans @AppleSupport https://t.co/UshvcCxp61
AppleSupport,2023-03-05 20:38:48+00:00,"@SlimFit93 We’d like to take a look into this, and help find the best solution. Please DM us which device, and software version you’re using, and we’ll get started there. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-05 20:37:48+00:00,"@CreamiiCookie Thanks for tagging us, we want to help. Please meet us in DM for troubleshooting. Thanks. https://t.co/GDrqU22YpT"
AppleSupport,2023-03-05 20:34:22+00:00,"@osiuk_v Hello. Since Twitter support is only available in English, you can reach out to us in your preferred language here: https://t.co/IBIY3vMgPj
You can also reach out to the Apple Support Communities here: https://t.co/UAAFDzGR13
Cheers. https://t.co/GDrqU22YpT"
alaskandonut,2023-03-05 20:34:08+00:00,@AppleSupport Wow and still no parentheses
AppleSupport,2023-03-05 20:34:07+00:00,"@Alex23X_ Hello, thanks for asking. Yes, the iPhone 13 and 14 have dual-SIMs, one physical SIM and one eSIM. https://t.co/8yjRd1Xo0i"
AppleSupport,2023-03-05 20:28:51+00:00,"@HeroicLife We’d like to assist. This article explains more about this feature: https://t.co/JNC5PW12kU If you have feedback regarding improvements for this feature, you can do so here: https://t.co/eTPVYVFyd8 DM us with any questions."
BigFootOnRocks,2023-03-05 20:27:16+00:00,@AppleSupport Your phone keypad fucking horrible. Why is there no text box indicator? I figured it out by trial and error🤦♂️
AppleSupport,2023-03-05 20:25:17+00:00,@natwan50 Thanks for contacting us. We want to help. Our Apple ID team would best be able to assist you. They offer support over the phone. You can schedule a callback with them here: https://t.co/NpQJidgpDA
Alex23X_,2023-03-05 20:23:38+00:00,"@AppleSupport
Hi there,
Do any UK's iPhone models feature dual-SIM?
Thx"
shashank6577,2023-03-05 20:22:16+00:00,"Dear sir, My iPhone 14 pro max worth 140000RS is stolen at mahabalipuram, chennai Martin Garrix concert more than 20 phones are stolen today at the concert by a group of thieves Please help me to track my phone @AppleSupport @Apple @chennaipolice_ @ChennaiTimesTOI ."
AppleSupport,2023-03-05 20:21:32+00:00,@XtraRoachClip Hi there. We are happy to help. Can you please reply to us in DM with your device’s model and software version? This will help us determine how to proceed. https://t.co/GDrqU22YpT
OlySounder,2023-03-06 23:59:24+00:00,"@DevonDieckman @AppleSupport That is definitely going to be difficult for a lot of people. I can see making the family share a boon for device owners, as other services don’t have that, but problems even accessing the service if you don’t own a device is poor. Monopolistic even."
_skrooge,2023-03-06 23:58:18+00:00,"@AppleSupport @Apple
Not sure how many times I have to tweet this for over a year now…
Add a setting to optimize Messages to iCloud for phone storage. I do not need 80GB of messages stored on my device when I have 2TB iCloud.
It’s getting ridiculous. Can’t even use my phone."
IIMSantaMaria,2023-03-06 23:56:07+00:00,@Apple @AppleSupport @tim_cook Extremely disappointed with Apple Phones. Why does it take sooo long to charge it?It started charging at 15:35 cst and still at only 39%! What’s wrong with APPLE? @TXAG @SenTedCruz
AppleSupport,2023-03-06 23:53:45+00:00,"@nxbels We’d be happy to look in to this with you!
Could you please DM us with what device you’re using and which OS version it’s running so we can get started? https://t.co/GDrqU22YpT"
AppleSupport,2023-03-06 23:51:49+00:00,@ILuZyYH We offer support via Twitter in English. Please contact us for help in your preferred language here: https://t.co/IBIY3vMgPj or join Apple Support Communities: https://t.co/RkpgWtFqBw https://t.co/GDrqU22YpT
AppleSupport,2023-03-06 23:50:49+00:00,"@nicoxia1 Hey there. We’d love to help!
Check out the following resource for help with managing the windows on your Mac: https://t.co/dOKPQ7NpfO