-
Notifications
You must be signed in to change notification settings - Fork 56
/
goinsta.go
1177 lines (1054 loc) · 28 KB
/
goinsta.go
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
package goinsta
import (
"crypto/tls"
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"net/http/cookiejar"
neturl "net/url"
"os"
"path/filepath"
"strconv"
"sync"
"time"
"github.com/Davincible/goinsta/v3/utilities"
)
// Instagram represent the main API handler
//
// Timeline: Represents instagram's main timeline.
// Profiles: Represents instagram's user profile.
// Account: Represents instagram's personal account.
// Collections: Represents instagram's saved post collections.
// Searchbar: Represents instagram's search.
// Activity: Represents instagram's user activity and notifications.
// Feed: Represents instagram's feed for e.g. user pages and hashtags.
// Contacts: Represents instagram's sync with contact book.
// Inbox: Represents instagram's messages.
// Locations: Represents instagram's locations.
// Challenges: Represents instagram's url challenges
// TwoFactorInfo Represents Instagram's 2FA login
//
// See Scheme section in README.md for more information.
//
// We recommend to use Export and Import functions after first Login.
//
// Also you can use SetProxy and UnsetProxy to set and unset proxy.
// Golang also provides the option to set a proxy using HTTP_PROXY env var.
//
type Instagram struct {
user string
pass string
totp *TOTP // 2FA seed
// device id: android-1923fjnma8123
dID string
// family device id, v4 uuid: 8b13e7b3-28f7-4e05-9474-358c6602e3f8
fID string
// uuid: 8493-1233-4312312-5123
uuid string
// rankToken
rankToken string
// token -- I think this is depricated, as I don't see any csrf tokens being used anymore, but not 100% sure
token string
// phone id v4 uuid: fbf767a4-260a-490d-bcbb-ee7c9ed7c576
pid string
// ads id: 5b23a92b-3228-4cff-b6ab-3199f531f05b
adid string
// challenge URL
challengeURL string
// pigeonSessionId
psID string
// contains header options set by Instagram
headerOptions sync.Map
// expiry of X-Mid cookie
xmidExpiry int64
xmidMu *sync.RWMutex
// Public Key
pubKey string
// Public Key ID
pubKeyID int
// Device Settings
device Device
// User-Agent
userAgent string
// Session Nonce
session string
// Instagram objects
// Timeline provides access to your timeline
Timeline *Timeline
// Discover provides access to the discover/explore page
Discover *Discover
// Profiles provides methods for interaction with other user's profiles
Profiles *Profiles
// IGTV allows you to fetch the IGTV Discover page
IGTV *IGTV
// Account stores all personal data of the user and his/her options.
Account *Account
// Collections represents your collections with saved posts
Collections *Collections
// Searchbar provides methods to access IG's search functionalities
Searchbar *Search
// Activity are instagram notifications.
Activity *Activity
// Inbox provides to Instagram's message/chat system
Inbox *Inbox
// Feed provides access to secondary feeds such as user's and hashtag's feeds
Feed *Feed
// Contacts provides address book sync/unsync methods
Contacts *Contacts
// Locations provde feed by location ID. To find location feeds by name use Searchbar
Locations *LocationInstance
// Challenge stores the challenge info if provided
Challenge *Challenge
// Checkpoint stores the checkpoint info, this is usually a prompt to accept cookies
Checkpoint *Checkpoint
// TwoFactorInfo enabled 2FA
TwoFactorInfo *TwoFactorInfo
c *http.Client
// Set to true to debug reponses
Debug bool
// Non-error message handlers.
// By default they will be printed out, alternatively you can e.g. pass them to a logger
infoHandler func(...interface{})
warnHandler func(...interface{})
debugHandler func(...interface{})
// Request Wrapper
reqWrapper ReqWrapper
// Proxy string
proxy string
proxyInsecure bool
// Keep track of a challenge response requesting to accept cookies
privacyCalled *utilities.ABool
// Keep track of whether an attempt has been made to accept the cookies
privacyRequested *utilities.ABool
}
func defaultHandler(args ...interface{}) {
fmt.Println(args...)
}
func (insta *Instagram) SetInfoHandler(f func(...interface{})) {
insta.infoHandler = f
}
func (insta *Instagram) SetWarnHandler(f func(...interface{})) {
insta.warnHandler = f
}
func (insta *Instagram) SetDebugHandler(f func(...interface{})) {
insta.debugHandler = f
}
func (insta *Instagram) SetWrapper(fn ReqWrapper) {
insta.reqWrapper = fn
}
// SetHTTPClient sets http client. This further allows users to use this functionality
// for HTTP testing using a mocking HTTP client Transport, which avoids direct calls to
// the Instagram, instead of returning mocked responses.
func (insta *Instagram) SetHTTPClient(client *http.Client) {
insta.c = client
}
// SetHTTPTransport sets http transport. This further allows users to tweak the underlying
// low level transport for adding additional fucntionalities.
func (insta *Instagram) SetHTTPTransport(transport http.RoundTripper) {
insta.c.Transport = transport
}
// SetDeviceID sets device id | android-1923fjnma8123
func (insta *Instagram) SetDeviceID(id string) {
insta.dID = id
}
// SetUUID sets v4 uuid | 71cd1aec-e146-4380-8d60-d216127c7b4e
func (insta *Instagram) SetUUID(uuid string) {
insta.uuid = uuid
}
// SetPhoneID sets phone id, v4 uuid | fbf767a4-260a-490d-bcbb-ee7c9ed7c576
func (insta *Instagram) SetPhoneID(id string) {
insta.pid = id
}
// SetPhoneID sets phone family id, v4 uuid | 8b13e7b3-28f7-4e05-9474-358c6602e3f8
func (insta *Instagram) SetFamilyID(id string) {
insta.fID = id
}
// SetAdID sets the ad id, v4 uuid | 5b23a92b-3228-4cff-b6ab-3199f531f05b
func (insta *Instagram) SetAdID(id string) {
insta.adid = id
}
// SetDevice allows you to set a custom device. This will also change the
// user agent based on the new device.
func (insta *Instagram) SetDevice(device Device) {
insta.device = device
insta.userAgent = createUserAgent(device)
}
// SetCookieJar sets the Cookie Jar. This further allows to use a custom implementation
// of a cookie jar which may be backed by a different data store such as redis.
func (insta *Instagram) SetCookieJar(jar http.CookieJar) error {
url, err := neturl.Parse(instaAPIUrl)
if err != nil {
return err
}
// First grab the cookies from the existing jar and we'll put it in the new jar.
cookies := insta.c.Jar.Cookies(url)
insta.c.Jar = jar
insta.c.Jar.SetCookies(url, cookies)
return nil
}
// New creates Instagram structure.
//
// :params:
// username:string
// password:string
// totp:string -- OPTIONAL: 2FA private key, aka seed, used to generate 2FA codes
// checks for empty string, so it's safe to pass in an empty string.
func New(username, password string, totp_seed ...string) *Instagram {
// this call never returns error
jar, _ := cookiejar.New(nil)
insta := &Instagram{
user: username,
pass: password,
dID: generateDeviceID(
generateMD5Hash(username + password),
),
uuid: generateUUID(),
pid: generateUUID(),
fID: generateUUID(),
psID: "UFS-" + generateUUID() + "-0",
headerOptions: sync.Map{},
xmidExpiry: -1,
xmidMu: &sync.RWMutex{},
device: GalaxyS10,
userAgent: createUserAgent(GalaxyS10),
c: &http.Client{
Transport: &http.Transport{
Proxy: http.ProxyFromEnvironment,
},
Jar: jar,
},
infoHandler: defaultHandler,
warnHandler: defaultHandler,
debugHandler: defaultHandler,
reqWrapper: DefaultWrapper(),
Debug: os.Getenv("GOINSTA_DEBUG") != "",
privacyCalled: utilities.NewABool(),
privacyRequested: utilities.NewABool(),
pubKeyID: -1,
}
insta.init()
if len(totp_seed) > 0 && totp_seed[0] != "" {
insta.totp = &TOTP{Seed: totp_seed[0]}
}
for k, v := range defaultHeaderOptions {
insta.headerOptions.Store(k, v)
}
return insta
}
func (insta *Instagram) init() {
insta.Challenge = newChallenge(insta)
insta.Profiles = newProfiles(insta)
insta.Activity = newActivity(insta)
insta.Timeline = newTimeline(insta)
insta.Searchbar = newSearch(insta)
insta.Inbox = newInbox(insta)
insta.Feed = newFeed(insta)
insta.Contacts = newContacts(insta)
insta.Locations = newLocation(insta)
insta.Discover = newDiscover(insta)
insta.Collections = newCollections(insta)
insta.IGTV = newIGTV(insta)
}
// SetTOTPSeed will set the seed used to generate 2FA codes.
func (insta *Instagram) SetTOTPSeed(seed string) {
if seed != "" {
insta.totp = &TOTP{Seed: seed}
}
}
// SetProxy sets proxy for connection.
func (insta *Instagram) SetProxy(url string, insecure bool, forceHTTP2 bool) error {
insta.proxy = url
insta.proxyInsecure = insecure
uri, err := neturl.Parse(url)
if err == nil {
insta.c.Transport = &http.Transport{
Proxy: http.ProxyURL(uri),
ForceAttemptHTTP2: forceHTTP2,
TLSClientConfig: &tls.Config{
InsecureSkipVerify: insecure,
},
}
}
return err
}
// UnsetProxy unsets proxy for connection.
func (insta *Instagram) UnsetProxy() {
insta.c.Transport = nil
}
// Save exports config to ~/.goinsta
func (insta *Instagram) Save() error {
home := os.Getenv("HOME")
if home == "" {
home = os.Getenv("home") // for plan9
}
return insta.Export(filepath.Join(home, ".goinsta"))
}
func (insta *Instagram) ExportConfig() ConfigFile {
config := ConfigFile{
ID: insta.Account.ID,
User: insta.user,
DeviceID: insta.dID,
FamilyID: insta.fID,
UUID: insta.uuid,
RankToken: insta.rankToken,
Token: insta.token,
PhoneID: insta.pid,
XmidExpiry: insta.xmidExpiry,
HeaderOptions: map[string]string{},
Account: insta.Account,
Device: insta.device,
TOTP: insta.totp,
SessionNonce: insta.session,
}
setHeaders := func(key, value interface{}) bool {
config.HeaderOptions[key.(string)] = value.(string)
return true
}
insta.headerOptions.Range(setHeaders)
return config
}
// Export exports *Instagram object options
func (insta *Instagram) Export(path string) error {
config := insta.ExportConfig()
bytes, err := json.Marshal(config)
if err != nil {
return err
}
return os.WriteFile(path, bytes, 0o644)
}
// Export exports selected *Instagram object options to an io.Writer
func (insta *Instagram) ExportIO(writer io.Writer) error {
config := insta.ExportConfig()
bytes, err := json.Marshal(config)
if err != nil {
return err
}
_, err = writer.Write(bytes)
return err
}
// ImportReader imports instagram configuration from io.Reader
//
// This function does not set proxy automatically. Use SetProxy after this call.
func ImportReader(r io.Reader, args ...interface{}) (*Instagram, error) {
bytes, err := io.ReadAll(r)
if err != nil {
return nil, err
}
config := ConfigFile{}
err = json.Unmarshal(bytes, &config)
if err != nil {
return nil, err
}
return ImportConfig(config, args...)
}
// ImportConfig imports instagram configuration from a configuration object.
//
// Add optional bool:true parameter to prevent account sync on import (do not make any http calls)
//
// This function does not set proxy automatically. Use SetProxy after this call.
func ImportConfig(config ConfigFile, args ...interface{}) (*Instagram, error) {
insta := &Instagram{
user: config.User,
totp: config.TOTP,
dID: config.DeviceID,
fID: config.FamilyID,
psID: "UFS-" + generateUUID() + "-0",
uuid: config.UUID,
rankToken: config.RankToken,
token: config.Token,
pid: config.PhoneID,
xmidExpiry: config.XmidExpiry,
xmidMu: &sync.RWMutex{},
headerOptions: sync.Map{},
device: config.Device,
c: &http.Client{
Transport: &http.Transport{
Proxy: http.ProxyFromEnvironment,
},
},
Account: config.Account,
infoHandler: defaultHandler,
warnHandler: defaultHandler,
debugHandler: defaultHandler,
reqWrapper: DefaultWrapper(),
Debug: os.Getenv("GOINSTA_DEBUG") != "",
privacyCalled: utilities.NewABool(),
privacyRequested: utilities.NewABool(),
pubKeyID: -1,
session: config.SessionNonce,
}
insta.userAgent = createUserAgent(insta.device)
for k, v := range config.HeaderOptions {
insta.headerOptions.Store(k, v)
}
insta.init()
dontSync := false
if len(args) != 0 {
switch v := args[0].(type) {
case bool:
dontSync = v
}
}
if dontSync {
insta.Account.insta = insta
} else {
insta.Account = &Account{
insta: insta,
ID: config.ID,
}
err := insta.Account.Sync()
if err != nil {
return nil, err
}
}
return insta, nil
}
// Import imports instagram configuration
//
// This function does not set proxy automatically. Use SetProxy after this call.
func Import(path string, args ...interface{}) (*Instagram, error) {
f, err := os.Open(path)
if err != nil {
return nil, err
}
defer f.Close()
return ImportReader(f, args...)
}
// Login performs instagram login sequence in close resemblance to the android apk.
//
// Password can optionally be provided for re-logins.
// If you create the insta object with goinsta.New(), there is no need to.
//
// Password will be deleted after login
func (insta *Instagram) Login(password ...string) (err error) {
if len(password) > 0 && password[0] != "" {
insta.pass = password[0]
}
// pre-login sequence
err = insta.zrToken()
if err != nil {
return
}
err = insta.sync()
if err != nil {
return
}
err = insta.getPrefill()
if err != nil {
if errIsFatal(err) {
return err
}
insta.warnHandler("Non fatal error while fetching prefill:", err)
}
err = insta.contactPrefill()
if err != nil {
if errIsFatal(err) {
return err
}
insta.warnHandler("Non fatal error while fetching contact prefill:", err)
}
err = insta.sync()
if err != nil {
return
}
if insta.pubKey == "" || insta.pubKeyID == -1 {
return errors.New("Sync returned empty public key and/or public key id")
}
err = insta.login()
if err != nil {
return err
}
// post-login sequence
err = insta.OpenApp()
if err != nil {
return err
}
return
}
// Logout closes current session
func (insta *Instagram) Logout() error {
if insta.session == "" {
return ErrSessionNotSet
}
body, _, err := insta.sendRequest(&reqOptions{
Endpoint: urlLogout,
IsPost: true,
Query: map[string]string{
"session_flush_nonce": insta.session,
"phone_id": insta.fID,
"guid": insta.uuid,
"device_id": insta.dID,
"_uuid": insta.uuid,
},
})
var resp ErrorN
if err := json.Unmarshal(body, &resp); err != nil {
return err
}
if resp.Status != "ok" {
return ErrLogoutFailed
}
insta.c.Jar = nil
insta.c = nil
return err
}
func (insta *Instagram) OpenApp() (err error) {
// First refresh tokens after being logged in
if err = insta.zrToken(); err != nil {
return
}
if err = insta.sync(); err != nil {
return
}
// Second start open app routine async
// this was first done synchronously, but the IO limitations make it take
// too long. On the offical app these requests also happen withing one
// to two seconds, instad of 10+.
wg := &sync.WaitGroup{}
errChan := make(chan error, 15)
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer wg.Done()
if err := insta.getAccountFamily(); err != nil {
if errIsFatal(err) {
errChan <- err
return
}
insta.warnHandler("Non fatal error while fetching account family:", err)
}
}(wg)
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer wg.Done()
if err := insta.getNdxSteps(); err != nil {
if errIsFatal(err) {
errChan <- err
return
}
insta.warnHandler("Non fatal error while fetching ndx steps:", err)
}
}(wg)
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer wg.Done()
if !insta.Timeline.Next() {
if err := insta.Timeline.Error(); err != ErrNoMore {
errChan <- errors.New("Failed to fetch timeline: " +
err.Error())
}
}
}(wg)
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer wg.Done()
if err := insta.callNotifBadge(); err != nil {
if errIsFatal(err) {
errChan <- err
return
}
insta.warnHandler("Non fatal error while fetching notify badge", err)
}
}(wg)
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer wg.Done()
if err := insta.banyan(); err != nil {
if errIsFatal(err) {
errChan <- err
return
}
insta.warnHandler("Non fatal error while fetching banyan", err)
}
}(wg)
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer wg.Done()
if err := insta.callMediaBlocked(); err != nil {
if errIsFatal(err) {
errChan <- err
return
}
insta.warnHandler("Non fatal error while fetching blocked media", err)
}
}(wg)
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer wg.Done()
// no clue what theses values could be used for
if _, err := insta.getCooldowns(); err != nil {
if errIsFatal(err) {
errChan <- err
return
}
insta.warnHandler("Non fatal error while fetching cool downs", err)
}
}(wg)
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer wg.Done()
if !insta.Discover.Next() {
if errIsFatal(err) {
errChan <- err
return
}
insta.warnHandler("Non fatal error while fetching explore page",
insta.Discover.Error())
}
}(wg)
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer wg.Done()
if err := insta.getConfig(); err != nil {
if errIsFatal(err) {
errChan <- err
return
}
insta.warnHandler("Non fatal error while fetching config", err)
}
}(wg)
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer wg.Done()
// no clue what theses values could be used for
if _, err := insta.getScoresBootstrapUsers(); err != nil {
if errIsFatal(err) {
errChan <- err
return
}
insta.warnHandler("Non fatal error while fetching bootstrap user scores", err)
}
}(wg)
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer wg.Done()
if !insta.Activity.Next() {
if err := insta.Activity.Error(); err != ErrNoMore {
errChan <- errors.New("Failed to fetch recent activity: " +
err.Error())
}
}
}(wg)
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer wg.Done()
if err := insta.sendAdID(); err != nil {
if errIsFatal(err) {
errChan <- err
return
}
insta.warnHandler("Non fatal error while sending ad id", err)
}
}(wg)
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer wg.Done()
if err := insta.callStClPushPerm(); err != nil {
if errIsFatal(err) {
errChan <- err
return
}
insta.warnHandler("Non fatal error while calling store client push permissions", err)
}
}(wg)
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer wg.Done()
if !insta.Inbox.InitialSnapshot() {
if err := insta.Inbox.Error(); err != ErrNoMore {
errChan <- errors.New("Failed to fetch initial messages inbox snapshot: " +
err.Error())
}
}
}(wg)
wg.Add(1)
go func(wg *sync.WaitGroup) {
defer wg.Done()
if err := insta.callContPointSig(); err != nil {
if errIsFatal(err) {
errChan <- err
return
}
insta.warnHandler("Non fatal error while calling contact point signal:", err)
}
}(wg)
wg.Wait()
select {
case err := <-errChan:
return err
default:
return nil
}
}
func (insta *Instagram) login() error {
timestamp := strconv.FormatInt(time.Now().Unix(), 10)
if insta.pubKey == "" || insta.pubKeyID == -1 {
return errors.New(
"no public key or public key ID set. Please call Instagram.Sync() and verify that it works correctly",
)
}
encrypted, err := utilities.EncryptPassword(insta.pass, insta.pubKey, insta.pubKeyID, timestamp)
if err != nil {
return err
}
result, err := json.Marshal(
map[string]interface{}{
"jazoest": jazoest(insta.dID),
"country_code": "[{\"country_code\":\"44\",\"source\":[\"default\"]}]",
"phone_id": insta.fID,
"enc_password": encrypted,
"username": insta.user,
"adid": insta.adid,
"guid": insta.uuid,
"device_id": insta.dID,
"google_tokens": "[]",
"login_attempt_count": 0,
},
)
if err != nil {
return err
}
body, _, err := insta.sendRequest(
&reqOptions{
Endpoint: urlLogin,
Query: map[string]string{"signed_body": "SIGNATURE." + string(result)},
IsPost: true,
IgnoreHeaders: []string{
"Ig-U-Shbts",
"Ig-U-Shbid",
"Ig-U-Rur",
"Authorization",
},
ExtraHeaders: map[string]string{
"X-Ig-Www-Claim": "0",
"Ig-Intended-User-Id": "0",
},
},
)
if err != nil {
return err
}
insta.pass = ""
return insta.parseLogin(body)
}
// parseLogin gets called from Login and Login2FA
func (insta *Instagram) parseLogin(body []byte) error {
var res struct {
Status string `json:"status"`
Account *Account `json:"logged_in_user"`
SessionNonce string `json:"session_flush_nonce"`
}
err := json.Unmarshal(body, &res)
if err != nil {
return fmt.Errorf("failed to parse json from login response with err: %w", err)
}
insta.Account = res.Account
insta.Account.insta = insta
insta.session = res.SessionNonce
insta.rankToken = strconv.FormatInt(insta.Account.ID, 10) + "_" + insta.uuid
return nil
}
func (insta *Instagram) getPrefill() error {
data, err := json.Marshal(
map[string]string{
"android_device_id": insta.dID,
"phone_id": insta.fID,
"usages": "[\"account_recovery_omnibox\"]",
"device_id": insta.uuid,
},
)
if err != nil {
return err
}
// ignore the error returned by the request, because 429 if often returned.
// request is non-critical.
insta.sendRequest(
&reqOptions{
Endpoint: urlGetPrefill,
IsPost: true,
Query: generateSignature(data),
Ignore429: true,
},
)
return nil
}
func (insta *Instagram) contactPrefill() error {
data, err := json.Marshal(
map[string]string{
"phone_id": insta.fID,
"usage": "prefill",
},
)
if err != nil {
return err
}
// ignore the error returned by the request, because 429 if often returned
// and body is not needed. Request is non-critical.
insta.sendRequest(
&reqOptions{
Endpoint: urlContactPrefill,
IsPost: true,
Query: generateSignature(data),
Ignore429: true,
},
)
return nil
}
func (insta *Instagram) zrToken() error {
body, _, err := insta.sendRequest(
&reqOptions{
Endpoint: urlZrToken,
IsPost: false,
Query: map[string]string{
"device_id": insta.dID,
"token_hash": "",
"custom_device_id": insta.uuid,
"fetch_reason": "token_expired",
},
IgnoreHeaders: []string{
"X-Pigeon-Session-Id",
"X-Pigeon-Rawclienttime",
"X-Ig-App-Locale",
"X-Ig-Device-Locale",
"X-Ig-Mapped-Locale",
"X-Ig-App-Startup-Country",
"Ig-U-Shbts",
"Ig-U-Shbid",
},
},
)
if err != nil {
return nil
}
var res map[string]interface{}
err = json.Unmarshal(body, &res)
if err != nil {
return err
}
// Get the expiry time of the token
token := res["token"].(map[string]interface{})
ttl := token["ttl"].(float64)
t := token["request_time"].(float64)
insta.xmidMu.Lock()
insta.xmidExpiry = int64(t + ttl)
insta.xmidMu.Unlock()
return err
}
func (insta *Instagram) sendAdID() error {
_, _, err := insta.sendRequest(
&reqOptions{
Endpoint: urlLogAttribution,
IsPost: true,
Query: map[string]string{"signed_body": "SIGNATURE.{}"},
},
)
return err
}
func (insta *Instagram) callStClPushPerm() error {
_, _, err := insta.sendRequest(
&reqOptions{
Endpoint: urlStoreClientPushPermissions,
IsPost: true,
Query: map[string]string{
"enabled": "true",
"device_id": insta.uuid,
"_uuid": insta.uuid,
},
},
)
return err
}
func (insta *Instagram) sync(args ...map[string]string) error {
var query map[string]string
if insta.Account == nil {
query = map[string]string{
"id": insta.uuid,
"server_config_retrieval": "1",
}
} else {
// if logged in
query = map[string]string{
"id": insta.uuid,
"_id": toString(insta.Account.ID),
"_uuid": insta.uuid,
"server_config_retrieval": "1",
}
}
data, err := json.Marshal(query)
if err != nil {
return err
}
_, h, err := insta.sendRequest(
&reqOptions{
Endpoint: urlSync,
Query: generateSignature(data),
IsPost: true,
IgnoreHeaders: []string{
"Authorization",
},
},
)
if err != nil {
return err
}