-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
5984 lines (5984 loc) · 401 KB
/
db.json
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
{
"repositories": [
{
"name": "facebook",
"total_count": 93607,
"incomplete_results": false,
"items": [
{
"id": 5216913,
"node_id": "MDEwOlJlcG9zaXRvcnk1MjE2OTEz",
"name": "facebook",
"full_name": "huandu/facebook",
"private": false,
"owner": {
"login": "huandu",
"id": 239739,
"node_id": "MDQ6VXNlcjIzOTczOQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/239739?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/huandu",
"html_url": "https://github.com/huandu",
"followers_url": "https://api.github.com/users/huandu/followers",
"following_url": "https://api.github.com/users/huandu/following{/other_user}",
"gists_url": "https://api.github.com/users/huandu/gists{/gist_id}",
"starred_url": "https://api.github.com/users/huandu/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/huandu/subscriptions",
"organizations_url": "https://api.github.com/users/huandu/orgs",
"repos_url": "https://api.github.com/users/huandu/repos",
"events_url": "https://api.github.com/users/huandu/events{/privacy}",
"received_events_url": "https://api.github.com/users/huandu/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/huandu/facebook",
"description": "A Facebook Graph API SDK For Go.",
"fork": false,
"url": "https://api.github.com/repos/huandu/facebook",
"forks_url": "https://api.github.com/repos/huandu/facebook/forks",
"keys_url": "https://api.github.com/repos/huandu/facebook/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/huandu/facebook/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/huandu/facebook/teams",
"hooks_url": "https://api.github.com/repos/huandu/facebook/hooks",
"issue_events_url": "https://api.github.com/repos/huandu/facebook/issues/events{/number}",
"events_url": "https://api.github.com/repos/huandu/facebook/events",
"assignees_url": "https://api.github.com/repos/huandu/facebook/assignees{/user}",
"branches_url": "https://api.github.com/repos/huandu/facebook/branches{/branch}",
"tags_url": "https://api.github.com/repos/huandu/facebook/tags",
"blobs_url": "https://api.github.com/repos/huandu/facebook/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/huandu/facebook/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/huandu/facebook/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/huandu/facebook/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/huandu/facebook/statuses/{sha}",
"languages_url": "https://api.github.com/repos/huandu/facebook/languages",
"stargazers_url": "https://api.github.com/repos/huandu/facebook/stargazers",
"contributors_url": "https://api.github.com/repos/huandu/facebook/contributors",
"subscribers_url": "https://api.github.com/repos/huandu/facebook/subscribers",
"subscription_url": "https://api.github.com/repos/huandu/facebook/subscription",
"commits_url": "https://api.github.com/repos/huandu/facebook/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/huandu/facebook/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/huandu/facebook/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/huandu/facebook/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/huandu/facebook/contents/{+path}",
"compare_url": "https://api.github.com/repos/huandu/facebook/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/huandu/facebook/merges",
"archive_url": "https://api.github.com/repos/huandu/facebook/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/huandu/facebook/downloads",
"issues_url": "https://api.github.com/repos/huandu/facebook/issues{/number}",
"pulls_url": "https://api.github.com/repos/huandu/facebook/pulls{/number}",
"milestones_url": "https://api.github.com/repos/huandu/facebook/milestones{/number}",
"notifications_url": "https://api.github.com/repos/huandu/facebook/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/huandu/facebook/labels{/name}",
"releases_url": "https://api.github.com/repos/huandu/facebook/releases{/id}",
"deployments_url": "https://api.github.com/repos/huandu/facebook/deployments",
"created_at": "2012-07-28T19:05:56Z",
"updated_at": "2021-02-12T12:19:45Z",
"pushed_at": "2021-01-16T05:54:52Z",
"git_url": "git://github.com/huandu/facebook.git",
"ssh_url": "[email protected]:huandu/facebook.git",
"clone_url": "https://github.com/huandu/facebook.git",
"svn_url": "https://github.com/huandu/facebook",
"homepage": "",
"size": 384,
"stargazers_count": 944,
"watchers_count": 944,
"language": "Go",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 346,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 0,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 346,
"open_issues": 0,
"watchers": 944,
"default_branch": "master",
"score": 1
},
{
"id": 659341,
"node_id": "MDEwOlJlcG9zaXRvcnk2NTkzNDE=",
"name": "facebook-android-sdk",
"full_name": "facebook/facebook-android-sdk",
"private": false,
"owner": {
"login": "facebook",
"id": 69631,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjY5NjMx",
"avatar_url": "https://avatars.githubusercontent.com/u/69631?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/facebook",
"html_url": "https://github.com/facebook",
"followers_url": "https://api.github.com/users/facebook/followers",
"following_url": "https://api.github.com/users/facebook/following{/other_user}",
"gists_url": "https://api.github.com/users/facebook/gists{/gist_id}",
"starred_url": "https://api.github.com/users/facebook/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/facebook/subscriptions",
"organizations_url": "https://api.github.com/users/facebook/orgs",
"repos_url": "https://api.github.com/users/facebook/repos",
"events_url": "https://api.github.com/users/facebook/events{/privacy}",
"received_events_url": "https://api.github.com/users/facebook/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/facebook/facebook-android-sdk",
"description": "Used to integrate Android apps with Facebook Platform.",
"fork": false,
"url": "https://api.github.com/repos/facebook/facebook-android-sdk",
"forks_url": "https://api.github.com/repos/facebook/facebook-android-sdk/forks",
"keys_url": "https://api.github.com/repos/facebook/facebook-android-sdk/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/facebook/facebook-android-sdk/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/facebook/facebook-android-sdk/teams",
"hooks_url": "https://api.github.com/repos/facebook/facebook-android-sdk/hooks",
"issue_events_url": "https://api.github.com/repos/facebook/facebook-android-sdk/issues/events{/number}",
"events_url": "https://api.github.com/repos/facebook/facebook-android-sdk/events",
"assignees_url": "https://api.github.com/repos/facebook/facebook-android-sdk/assignees{/user}",
"branches_url": "https://api.github.com/repos/facebook/facebook-android-sdk/branches{/branch}",
"tags_url": "https://api.github.com/repos/facebook/facebook-android-sdk/tags",
"blobs_url": "https://api.github.com/repos/facebook/facebook-android-sdk/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/facebook/facebook-android-sdk/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/facebook/facebook-android-sdk/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/facebook/facebook-android-sdk/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/facebook/facebook-android-sdk/statuses/{sha}",
"languages_url": "https://api.github.com/repos/facebook/facebook-android-sdk/languages",
"stargazers_url": "https://api.github.com/repos/facebook/facebook-android-sdk/stargazers",
"contributors_url": "https://api.github.com/repos/facebook/facebook-android-sdk/contributors",
"subscribers_url": "https://api.github.com/repos/facebook/facebook-android-sdk/subscribers",
"subscription_url": "https://api.github.com/repos/facebook/facebook-android-sdk/subscription",
"commits_url": "https://api.github.com/repos/facebook/facebook-android-sdk/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/facebook/facebook-android-sdk/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/facebook/facebook-android-sdk/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/facebook/facebook-android-sdk/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/facebook/facebook-android-sdk/contents/{+path}",
"compare_url": "https://api.github.com/repos/facebook/facebook-android-sdk/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/facebook/facebook-android-sdk/merges",
"archive_url": "https://api.github.com/repos/facebook/facebook-android-sdk/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/facebook/facebook-android-sdk/downloads",
"issues_url": "https://api.github.com/repos/facebook/facebook-android-sdk/issues{/number}",
"pulls_url": "https://api.github.com/repos/facebook/facebook-android-sdk/pulls{/number}",
"milestones_url": "https://api.github.com/repos/facebook/facebook-android-sdk/milestones{/number}",
"notifications_url": "https://api.github.com/repos/facebook/facebook-android-sdk/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/facebook/facebook-android-sdk/labels{/name}",
"releases_url": "https://api.github.com/repos/facebook/facebook-android-sdk/releases{/id}",
"deployments_url": "https://api.github.com/repos/facebook/facebook-android-sdk/deployments",
"created_at": "2010-05-10T17:17:33Z",
"updated_at": "2021-02-15T17:06:30Z",
"pushed_at": "2021-02-13T03:29:17Z",
"git_url": "git://github.com/facebook/facebook-android-sdk.git",
"ssh_url": "[email protected]:facebook/facebook-android-sdk.git",
"clone_url": "https://github.com/facebook/facebook-android-sdk.git",
"svn_url": "https://github.com/facebook/facebook-android-sdk",
"homepage": "https://developers.facebook.com/docs/android",
"size": 28973,
"stargazers_count": 5311,
"watchers_count": 5311,
"language": "Java",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 3407,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 67,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"forks": 3407,
"open_issues": 67,
"watchers": 5311,
"default_branch": "master",
"score": 1
},
{
"id": 738491,
"node_id": "MDEwOlJlcG9zaXRvcnk3Mzg0OTE=",
"name": "facebook-ios-sdk",
"full_name": "facebook/facebook-ios-sdk",
"private": false,
"owner": {
"login": "facebook",
"id": 69631,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjY5NjMx",
"avatar_url": "https://avatars.githubusercontent.com/u/69631?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/facebook",
"html_url": "https://github.com/facebook",
"followers_url": "https://api.github.com/users/facebook/followers",
"following_url": "https://api.github.com/users/facebook/following{/other_user}",
"gists_url": "https://api.github.com/users/facebook/gists{/gist_id}",
"starred_url": "https://api.github.com/users/facebook/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/facebook/subscriptions",
"organizations_url": "https://api.github.com/users/facebook/orgs",
"repos_url": "https://api.github.com/users/facebook/repos",
"events_url": "https://api.github.com/users/facebook/events{/privacy}",
"received_events_url": "https://api.github.com/users/facebook/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/facebook/facebook-ios-sdk",
"description": "Used to integrate the Facebook Platform with your iOS & tvOS apps.",
"fork": false,
"url": "https://api.github.com/repos/facebook/facebook-ios-sdk",
"forks_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/forks",
"keys_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/teams",
"hooks_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/hooks",
"issue_events_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/issues/events{/number}",
"events_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/events",
"assignees_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/assignees{/user}",
"branches_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/branches{/branch}",
"tags_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/tags",
"blobs_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/statuses/{sha}",
"languages_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/languages",
"stargazers_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/stargazers",
"contributors_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/contributors",
"subscribers_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/subscribers",
"subscription_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/subscription",
"commits_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/contents/{+path}",
"compare_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/merges",
"archive_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/downloads",
"issues_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/issues{/number}",
"pulls_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/pulls{/number}",
"milestones_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/milestones{/number}",
"notifications_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/labels{/name}",
"releases_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/releases{/id}",
"deployments_url": "https://api.github.com/repos/facebook/facebook-ios-sdk/deployments",
"created_at": "2010-06-24T22:11:03Z",
"updated_at": "2021-02-15T09:09:39Z",
"pushed_at": "2021-02-12T21:32:36Z",
"git_url": "git://github.com/facebook/facebook-ios-sdk.git",
"ssh_url": "[email protected]:facebook/facebook-ios-sdk.git",
"clone_url": "https://github.com/facebook/facebook-ios-sdk.git",
"svn_url": "https://github.com/facebook/facebook-ios-sdk",
"homepage": "https://developers.facebook.com/docs/ios",
"size": 78956,
"stargazers_count": 6656,
"watchers_count": 6656,
"language": "Objective-C",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 2762,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 74,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"forks": 2762,
"open_issues": 74,
"watchers": 6656,
"default_branch": "master",
"score": 1
},
{
"id": 3077368,
"node_id": "MDEwOlJlcG9zaXRvcnkzMDc3MzY4",
"name": "facebook-php-sdk",
"full_name": "facebookarchive/facebook-php-sdk",
"private": false,
"owner": {
"login": "facebookarchive",
"id": 7560860,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NjA4NjA=",
"avatar_url": "https://avatars.githubusercontent.com/u/7560860?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/facebookarchive",
"html_url": "https://github.com/facebookarchive",
"followers_url": "https://api.github.com/users/facebookarchive/followers",
"following_url": "https://api.github.com/users/facebookarchive/following{/other_user}",
"gists_url": "https://api.github.com/users/facebookarchive/gists{/gist_id}",
"starred_url": "https://api.github.com/users/facebookarchive/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/facebookarchive/subscriptions",
"organizations_url": "https://api.github.com/users/facebookarchive/orgs",
"repos_url": "https://api.github.com/users/facebookarchive/repos",
"events_url": "https://api.github.com/users/facebookarchive/events{/privacy}",
"received_events_url": "https://api.github.com/users/facebookarchive/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/facebookarchive/facebook-php-sdk",
"description": "This SDK is deprecated. Find the new SDK here: https://github.com/facebook/facebook-php-sdk-v4",
"fork": false,
"url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk",
"forks_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/forks",
"keys_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/teams",
"hooks_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/hooks",
"issue_events_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/issues/events{/number}",
"events_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/events",
"assignees_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/assignees{/user}",
"branches_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/branches{/branch}",
"tags_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/tags",
"blobs_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/statuses/{sha}",
"languages_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/languages",
"stargazers_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/stargazers",
"contributors_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/contributors",
"subscribers_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/subscribers",
"subscription_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/subscription",
"commits_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/contents/{+path}",
"compare_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/merges",
"archive_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/downloads",
"issues_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/issues{/number}",
"pulls_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/pulls{/number}",
"milestones_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/milestones{/number}",
"notifications_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/labels{/name}",
"releases_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/releases{/id}",
"deployments_url": "https://api.github.com/repos/facebookarchive/facebook-php-sdk/deployments",
"created_at": "2011-12-30T23:47:27Z",
"updated_at": "2021-02-09T11:55:29Z",
"pushed_at": "2019-01-13T12:04:33Z",
"git_url": "git://github.com/facebookarchive/facebook-php-sdk.git",
"ssh_url": "[email protected]:facebookarchive/facebook-php-sdk.git",
"clone_url": "https://github.com/facebookarchive/facebook-php-sdk.git",
"svn_url": "https://github.com/facebookarchive/facebook-php-sdk",
"homepage": "https://developers.facebook.com/docs/reference/php/",
"size": 1422,
"stargazers_count": 3329,
"watchers_count": 3329,
"language": "PHP",
"has_issues": false,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 3041,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 2,
"license": null,
"forks": 3041,
"open_issues": 2,
"watchers": 3329,
"default_branch": "master",
"score": 1
},
{
"id": 63305599,
"node_id": "MDEwOlJlcG9zaXRvcnk2MzMwNTU5OQ==",
"name": "FacebookBot",
"full_name": "hungtraan/FacebookBot",
"private": false,
"owner": {
"login": "hungtraan",
"id": 12810783,
"node_id": "MDQ6VXNlcjEyODEwNzgz",
"avatar_url": "https://avatars.githubusercontent.com/u/12810783?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/hungtraan",
"html_url": "https://github.com/hungtraan",
"followers_url": "https://api.github.com/users/hungtraan/followers",
"following_url": "https://api.github.com/users/hungtraan/following{/other_user}",
"gists_url": "https://api.github.com/users/hungtraan/gists{/gist_id}",
"starred_url": "https://api.github.com/users/hungtraan/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/hungtraan/subscriptions",
"organizations_url": "https://api.github.com/users/hungtraan/orgs",
"repos_url": "https://api.github.com/users/hungtraan/repos",
"events_url": "https://api.github.com/users/hungtraan/events{/privacy}",
"received_events_url": "https://api.github.com/users/hungtraan/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/hungtraan/FacebookBot",
"description": "A Facebook Messenger Bot that supports Voice Recognition, Natural Language Processing and features such as: search nearby restaurants, search trending news, transcribe and save memos to the cloud.",
"fork": false,
"url": "https://api.github.com/repos/hungtraan/FacebookBot",
"forks_url": "https://api.github.com/repos/hungtraan/FacebookBot/forks",
"keys_url": "https://api.github.com/repos/hungtraan/FacebookBot/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/hungtraan/FacebookBot/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/hungtraan/FacebookBot/teams",
"hooks_url": "https://api.github.com/repos/hungtraan/FacebookBot/hooks",
"issue_events_url": "https://api.github.com/repos/hungtraan/FacebookBot/issues/events{/number}",
"events_url": "https://api.github.com/repos/hungtraan/FacebookBot/events",
"assignees_url": "https://api.github.com/repos/hungtraan/FacebookBot/assignees{/user}",
"branches_url": "https://api.github.com/repos/hungtraan/FacebookBot/branches{/branch}",
"tags_url": "https://api.github.com/repos/hungtraan/FacebookBot/tags",
"blobs_url": "https://api.github.com/repos/hungtraan/FacebookBot/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/hungtraan/FacebookBot/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/hungtraan/FacebookBot/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/hungtraan/FacebookBot/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/hungtraan/FacebookBot/statuses/{sha}",
"languages_url": "https://api.github.com/repos/hungtraan/FacebookBot/languages",
"stargazers_url": "https://api.github.com/repos/hungtraan/FacebookBot/stargazers",
"contributors_url": "https://api.github.com/repos/hungtraan/FacebookBot/contributors",
"subscribers_url": "https://api.github.com/repos/hungtraan/FacebookBot/subscribers",
"subscription_url": "https://api.github.com/repos/hungtraan/FacebookBot/subscription",
"commits_url": "https://api.github.com/repos/hungtraan/FacebookBot/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/hungtraan/FacebookBot/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/hungtraan/FacebookBot/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/hungtraan/FacebookBot/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/hungtraan/FacebookBot/contents/{+path}",
"compare_url": "https://api.github.com/repos/hungtraan/FacebookBot/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/hungtraan/FacebookBot/merges",
"archive_url": "https://api.github.com/repos/hungtraan/FacebookBot/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/hungtraan/FacebookBot/downloads",
"issues_url": "https://api.github.com/repos/hungtraan/FacebookBot/issues{/number}",
"pulls_url": "https://api.github.com/repos/hungtraan/FacebookBot/pulls{/number}",
"milestones_url": "https://api.github.com/repos/hungtraan/FacebookBot/milestones{/number}",
"notifications_url": "https://api.github.com/repos/hungtraan/FacebookBot/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/hungtraan/FacebookBot/labels{/name}",
"releases_url": "https://api.github.com/repos/hungtraan/FacebookBot/releases{/id}",
"deployments_url": "https://api.github.com/repos/hungtraan/FacebookBot/deployments",
"created_at": "2016-07-14T05:39:52Z",
"updated_at": "2021-02-16T11:46:35Z",
"pushed_at": "2020-10-12T09:03:00Z",
"git_url": "git://github.com/hungtraan/FacebookBot.git",
"ssh_url": "[email protected]:hungtraan/FacebookBot.git",
"clone_url": "https://github.com/hungtraan/FacebookBot.git",
"svn_url": "https://github.com/hungtraan/FacebookBot",
"homepage": "https://www.facebook.com/optimistPrimeBot/",
"size": 5653,
"stargazers_count": 1285,
"watchers_count": 1285,
"language": "JavaScript",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 236,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 8,
"license": {
"key": "mit",
"name": "MIT License",
"spdx_id": "MIT",
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 236,
"open_issues": 8,
"watchers": 1285,
"default_branch": "master",
"score": 1
},
{
"id": 1733272,
"node_id": "MDEwOlJlcG9zaXRvcnkxNzMzMjcy",
"name": "facebook-sdk",
"full_name": "mobolic/facebook-sdk",
"private": false,
"owner": {
"login": "mobolic",
"id": 13390096,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjEzMzkwMDk2",
"avatar_url": "https://avatars.githubusercontent.com/u/13390096?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mobolic",
"html_url": "https://github.com/mobolic",
"followers_url": "https://api.github.com/users/mobolic/followers",
"following_url": "https://api.github.com/users/mobolic/following{/other_user}",
"gists_url": "https://api.github.com/users/mobolic/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mobolic/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mobolic/subscriptions",
"organizations_url": "https://api.github.com/users/mobolic/orgs",
"repos_url": "https://api.github.com/users/mobolic/repos",
"events_url": "https://api.github.com/users/mobolic/events{/privacy}",
"received_events_url": "https://api.github.com/users/mobolic/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/mobolic/facebook-sdk",
"description": "Python SDK for Facebook's Graph API",
"fork": false,
"url": "https://api.github.com/repos/mobolic/facebook-sdk",
"forks_url": "https://api.github.com/repos/mobolic/facebook-sdk/forks",
"keys_url": "https://api.github.com/repos/mobolic/facebook-sdk/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/mobolic/facebook-sdk/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/mobolic/facebook-sdk/teams",
"hooks_url": "https://api.github.com/repos/mobolic/facebook-sdk/hooks",
"issue_events_url": "https://api.github.com/repos/mobolic/facebook-sdk/issues/events{/number}",
"events_url": "https://api.github.com/repos/mobolic/facebook-sdk/events",
"assignees_url": "https://api.github.com/repos/mobolic/facebook-sdk/assignees{/user}",
"branches_url": "https://api.github.com/repos/mobolic/facebook-sdk/branches{/branch}",
"tags_url": "https://api.github.com/repos/mobolic/facebook-sdk/tags",
"blobs_url": "https://api.github.com/repos/mobolic/facebook-sdk/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/mobolic/facebook-sdk/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/mobolic/facebook-sdk/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/mobolic/facebook-sdk/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/mobolic/facebook-sdk/statuses/{sha}",
"languages_url": "https://api.github.com/repos/mobolic/facebook-sdk/languages",
"stargazers_url": "https://api.github.com/repos/mobolic/facebook-sdk/stargazers",
"contributors_url": "https://api.github.com/repos/mobolic/facebook-sdk/contributors",
"subscribers_url": "https://api.github.com/repos/mobolic/facebook-sdk/subscribers",
"subscription_url": "https://api.github.com/repos/mobolic/facebook-sdk/subscription",
"commits_url": "https://api.github.com/repos/mobolic/facebook-sdk/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/mobolic/facebook-sdk/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/mobolic/facebook-sdk/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/mobolic/facebook-sdk/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/mobolic/facebook-sdk/contents/{+path}",
"compare_url": "https://api.github.com/repos/mobolic/facebook-sdk/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/mobolic/facebook-sdk/merges",
"archive_url": "https://api.github.com/repos/mobolic/facebook-sdk/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/mobolic/facebook-sdk/downloads",
"issues_url": "https://api.github.com/repos/mobolic/facebook-sdk/issues{/number}",
"pulls_url": "https://api.github.com/repos/mobolic/facebook-sdk/pulls{/number}",
"milestones_url": "https://api.github.com/repos/mobolic/facebook-sdk/milestones{/number}",
"notifications_url": "https://api.github.com/repos/mobolic/facebook-sdk/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/mobolic/facebook-sdk/labels{/name}",
"releases_url": "https://api.github.com/repos/mobolic/facebook-sdk/releases{/id}",
"deployments_url": "https://api.github.com/repos/mobolic/facebook-sdk/deployments",
"created_at": "2011-05-11T13:38:27Z",
"updated_at": "2021-02-15T06:47:02Z",
"pushed_at": "2020-12-27T07:29:22Z",
"git_url": "git://github.com/mobolic/facebook-sdk.git",
"ssh_url": "[email protected]:mobolic/facebook-sdk.git",
"clone_url": "https://github.com/mobolic/facebook-sdk.git",
"svn_url": "https://github.com/mobolic/facebook-sdk",
"homepage": "https://facebook-sdk.readthedocs.io/",
"size": 428,
"stargazers_count": 2579,
"watchers_count": 2579,
"language": "Python",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 946,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 25,
"license": {
"key": "apache-2.0",
"name": "Apache License 2.0",
"spdx_id": "Apache-2.0",
"url": "https://api.github.com/licenses/apache-2.0",
"node_id": "MDc6TGljZW5zZTI="
},
"forks": 946,
"open_issues": 25,
"watchers": 2579,
"default_branch": "master",
"score": 1
},
{
"id": 1824050,
"node_id": "MDEwOlJlcG9zaXRvcnkxODI0MDUw",
"name": "phonegap-facebook-plugin",
"full_name": "Wizcorp/phonegap-facebook-plugin",
"private": false,
"owner": {
"login": "Wizcorp",
"id": 592346,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjU5MjM0Ng==",
"avatar_url": "https://avatars.githubusercontent.com/u/592346?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Wizcorp",
"html_url": "https://github.com/Wizcorp",
"followers_url": "https://api.github.com/users/Wizcorp/followers",
"following_url": "https://api.github.com/users/Wizcorp/following{/other_user}",
"gists_url": "https://api.github.com/users/Wizcorp/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Wizcorp/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Wizcorp/subscriptions",
"organizations_url": "https://api.github.com/users/Wizcorp/orgs",
"repos_url": "https://api.github.com/users/Wizcorp/repos",
"events_url": "https://api.github.com/users/Wizcorp/events{/privacy}",
"received_events_url": "https://api.github.com/users/Wizcorp/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/Wizcorp/phonegap-facebook-plugin",
"description": "The official plugin for Facebook in Apache Cordova/PhoneGap",
"fork": false,
"url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin",
"forks_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/forks",
"keys_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/teams",
"hooks_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/hooks",
"issue_events_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/issues/events{/number}",
"events_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/events",
"assignees_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/assignees{/user}",
"branches_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/branches{/branch}",
"tags_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/tags",
"blobs_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/statuses/{sha}",
"languages_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/languages",
"stargazers_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/stargazers",
"contributors_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/contributors",
"subscribers_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/subscribers",
"subscription_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/subscription",
"commits_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/contents/{+path}",
"compare_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/merges",
"archive_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/downloads",
"issues_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/issues{/number}",
"pulls_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/pulls{/number}",
"milestones_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/milestones{/number}",
"notifications_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/labels{/name}",
"releases_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/releases{/id}",
"deployments_url": "https://api.github.com/repos/Wizcorp/phonegap-facebook-plugin/deployments",
"created_at": "2011-05-31T01:02:23Z",
"updated_at": "2021-02-12T18:08:26Z",
"pushed_at": "2021-01-03T18:26:18Z",
"git_url": "git://github.com/Wizcorp/phonegap-facebook-plugin.git",
"ssh_url": "[email protected]:Wizcorp/phonegap-facebook-plugin.git",
"clone_url": "https://github.com/Wizcorp/phonegap-facebook-plugin.git",
"svn_url": "https://github.com/Wizcorp/phonegap-facebook-plugin",
"homepage": "",
"size": 75734,
"stargazers_count": 1906,
"watchers_count": 1906,
"language": "Java",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 1974,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 435,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"forks": 1974,
"open_issues": 435,
"watchers": 1906,
"default_branch": "master",
"score": 1
},
{
"id": 4334108,
"node_id": "MDEwOlJlcG9zaXRvcnk0MzM0MTA4",
"name": "facebook",
"full_name": "opauth/facebook",
"private": false,
"owner": {
"login": "opauth",
"id": 1791209,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjE3OTEyMDk=",
"avatar_url": "https://avatars.githubusercontent.com/u/1791209?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/opauth",
"html_url": "https://github.com/opauth",
"followers_url": "https://api.github.com/users/opauth/followers",
"following_url": "https://api.github.com/users/opauth/following{/other_user}",
"gists_url": "https://api.github.com/users/opauth/gists{/gist_id}",
"starred_url": "https://api.github.com/users/opauth/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/opauth/subscriptions",
"organizations_url": "https://api.github.com/users/opauth/orgs",
"repos_url": "https://api.github.com/users/opauth/repos",
"events_url": "https://api.github.com/users/opauth/events{/privacy}",
"received_events_url": "https://api.github.com/users/opauth/received_events",
"type": "Organization",
"site_admin": false
},
"html_url": "https://github.com/opauth/facebook",
"description": "Facebook strategy for Opauth",
"fork": false,
"url": "https://api.github.com/repos/opauth/facebook",
"forks_url": "https://api.github.com/repos/opauth/facebook/forks",
"keys_url": "https://api.github.com/repos/opauth/facebook/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/opauth/facebook/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/opauth/facebook/teams",
"hooks_url": "https://api.github.com/repos/opauth/facebook/hooks",
"issue_events_url": "https://api.github.com/repos/opauth/facebook/issues/events{/number}",
"events_url": "https://api.github.com/repos/opauth/facebook/events",
"assignees_url": "https://api.github.com/repos/opauth/facebook/assignees{/user}",
"branches_url": "https://api.github.com/repos/opauth/facebook/branches{/branch}",
"tags_url": "https://api.github.com/repos/opauth/facebook/tags",
"blobs_url": "https://api.github.com/repos/opauth/facebook/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/opauth/facebook/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/opauth/facebook/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/opauth/facebook/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/opauth/facebook/statuses/{sha}",
"languages_url": "https://api.github.com/repos/opauth/facebook/languages",
"stargazers_url": "https://api.github.com/repos/opauth/facebook/stargazers",
"contributors_url": "https://api.github.com/repos/opauth/facebook/contributors",
"subscribers_url": "https://api.github.com/repos/opauth/facebook/subscribers",
"subscription_url": "https://api.github.com/repos/opauth/facebook/subscription",
"commits_url": "https://api.github.com/repos/opauth/facebook/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/opauth/facebook/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/opauth/facebook/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/opauth/facebook/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/opauth/facebook/contents/{+path}",
"compare_url": "https://api.github.com/repos/opauth/facebook/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/opauth/facebook/merges",
"archive_url": "https://api.github.com/repos/opauth/facebook/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/opauth/facebook/downloads",
"issues_url": "https://api.github.com/repos/opauth/facebook/issues{/number}",
"pulls_url": "https://api.github.com/repos/opauth/facebook/pulls{/number}",
"milestones_url": "https://api.github.com/repos/opauth/facebook/milestones{/number}",
"notifications_url": "https://api.github.com/repos/opauth/facebook/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/opauth/facebook/labels{/name}",
"releases_url": "https://api.github.com/repos/opauth/facebook/releases{/id}",
"deployments_url": "https://api.github.com/repos/opauth/facebook/deployments",
"created_at": "2012-05-15T09:28:54Z",
"updated_at": "2021-02-04T23:36:56Z",
"pushed_at": "2020-03-25T06:56:55Z",
"git_url": "git://github.com/opauth/facebook.git",
"ssh_url": "[email protected]:opauth/facebook.git",
"clone_url": "https://github.com/opauth/facebook.git",
"svn_url": "https://github.com/opauth/facebook",
"homepage": null,
"size": 41,
"stargazers_count": 85,
"watchers_count": 85,
"language": "PHP",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": false,
"has_pages": false,
"forks_count": 175,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 2,
"license": null,
"forks": 175,
"open_issues": 2,
"watchers": 85,
"default_branch": "master",
"score": 1
},
{
"id": 648127,
"node_id": "MDEwOlJlcG9zaXRvcnk2NDgxMjc=",
"name": "Django-facebook",
"full_name": "tschellenbach/Django-facebook",
"private": false,
"owner": {
"login": "tschellenbach",
"id": 265409,
"node_id": "MDQ6VXNlcjI2NTQwOQ==",
"avatar_url": "https://avatars.githubusercontent.com/u/265409?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/tschellenbach",
"html_url": "https://github.com/tschellenbach",
"followers_url": "https://api.github.com/users/tschellenbach/followers",
"following_url": "https://api.github.com/users/tschellenbach/following{/other_user}",
"gists_url": "https://api.github.com/users/tschellenbach/gists{/gist_id}",
"starred_url": "https://api.github.com/users/tschellenbach/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tschellenbach/subscriptions",
"organizations_url": "https://api.github.com/users/tschellenbach/orgs",
"repos_url": "https://api.github.com/users/tschellenbach/repos",
"events_url": "https://api.github.com/users/tschellenbach/events{/privacy}",
"received_events_url": "https://api.github.com/users/tschellenbach/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/tschellenbach/Django-facebook",
"description": "Facebook open graph api implementation using the Django web framework in python",
"fork": false,
"url": "https://api.github.com/repos/tschellenbach/Django-facebook",
"forks_url": "https://api.github.com/repos/tschellenbach/Django-facebook/forks",
"keys_url": "https://api.github.com/repos/tschellenbach/Django-facebook/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/tschellenbach/Django-facebook/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/tschellenbach/Django-facebook/teams",
"hooks_url": "https://api.github.com/repos/tschellenbach/Django-facebook/hooks",
"issue_events_url": "https://api.github.com/repos/tschellenbach/Django-facebook/issues/events{/number}",
"events_url": "https://api.github.com/repos/tschellenbach/Django-facebook/events",
"assignees_url": "https://api.github.com/repos/tschellenbach/Django-facebook/assignees{/user}",
"branches_url": "https://api.github.com/repos/tschellenbach/Django-facebook/branches{/branch}",
"tags_url": "https://api.github.com/repos/tschellenbach/Django-facebook/tags",
"blobs_url": "https://api.github.com/repos/tschellenbach/Django-facebook/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/tschellenbach/Django-facebook/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/tschellenbach/Django-facebook/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/tschellenbach/Django-facebook/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/tschellenbach/Django-facebook/statuses/{sha}",
"languages_url": "https://api.github.com/repos/tschellenbach/Django-facebook/languages",
"stargazers_url": "https://api.github.com/repos/tschellenbach/Django-facebook/stargazers",
"contributors_url": "https://api.github.com/repos/tschellenbach/Django-facebook/contributors",
"subscribers_url": "https://api.github.com/repos/tschellenbach/Django-facebook/subscribers",
"subscription_url": "https://api.github.com/repos/tschellenbach/Django-facebook/subscription",
"commits_url": "https://api.github.com/repos/tschellenbach/Django-facebook/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/tschellenbach/Django-facebook/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/tschellenbach/Django-facebook/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/tschellenbach/Django-facebook/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/tschellenbach/Django-facebook/contents/{+path}",
"compare_url": "https://api.github.com/repos/tschellenbach/Django-facebook/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/tschellenbach/Django-facebook/merges",
"archive_url": "https://api.github.com/repos/tschellenbach/Django-facebook/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/tschellenbach/Django-facebook/downloads",
"issues_url": "https://api.github.com/repos/tschellenbach/Django-facebook/issues{/number}",
"pulls_url": "https://api.github.com/repos/tschellenbach/Django-facebook/pulls{/number}",
"milestones_url": "https://api.github.com/repos/tschellenbach/Django-facebook/milestones{/number}",
"notifications_url": "https://api.github.com/repos/tschellenbach/Django-facebook/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/tschellenbach/Django-facebook/labels{/name}",
"releases_url": "https://api.github.com/repos/tschellenbach/Django-facebook/releases{/id}",
"deployments_url": "https://api.github.com/repos/tschellenbach/Django-facebook/deployments",
"created_at": "2010-05-05T10:00:50Z",
"updated_at": "2021-02-09T22:46:41Z",
"pushed_at": "2020-12-28T07:06:49Z",
"git_url": "git://github.com/tschellenbach/Django-facebook.git",
"ssh_url": "[email protected]:tschellenbach/Django-facebook.git",
"clone_url": "https://github.com/tschellenbach/Django-facebook.git",
"svn_url": "https://github.com/tschellenbach/Django-facebook",
"homepage": "http://www.mellowmorning.com/",
"size": 2300,
"stargazers_count": 1417,
"watchers_count": 1417,
"language": "Python",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 554,
"mirror_url": null,
"archived": false,
"disabled": false,
"open_issues_count": 136,
"license": {
"key": "other",
"name": "Other",
"spdx_id": "NOASSERTION",
"url": null,
"node_id": "MDc6TGljZW5zZTA="
},
"forks": 554,
"open_issues": 136,
"watchers": 1417,
"default_branch": "master",
"score": 1
},
{
"id": 39387083,
"node_id": "MDEwOlJlcG9zaXRvcnkzOTM4NzA4Mw==",
"name": "facebook-page-post-scraper",
"full_name": "minimaxir/facebook-page-post-scraper",
"private": false,
"owner": {
"login": "minimaxir",
"id": 2179708,
"node_id": "MDQ6VXNlcjIxNzk3MDg=",
"avatar_url": "https://avatars.githubusercontent.com/u/2179708?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/minimaxir",
"html_url": "https://github.com/minimaxir",
"followers_url": "https://api.github.com/users/minimaxir/followers",
"following_url": "https://api.github.com/users/minimaxir/following{/other_user}",
"gists_url": "https://api.github.com/users/minimaxir/gists{/gist_id}",
"starred_url": "https://api.github.com/users/minimaxir/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/minimaxir/subscriptions",
"organizations_url": "https://api.github.com/users/minimaxir/orgs",
"repos_url": "https://api.github.com/users/minimaxir/repos",
"events_url": "https://api.github.com/users/minimaxir/events{/privacy}",
"received_events_url": "https://api.github.com/users/minimaxir/received_events",
"type": "User",
"site_admin": false
},
"html_url": "https://github.com/minimaxir/facebook-page-post-scraper",
"description": "Data scraper for Facebook Pages, and also code accompanying the blog post How to Scrape Data From Facebook Page Posts for Statistical Analysis",
"fork": false,
"url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper",
"forks_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/forks",
"keys_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/keys{/key_id}",
"collaborators_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/collaborators{/collaborator}",
"teams_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/teams",
"hooks_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/hooks",
"issue_events_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/issues/events{/number}",
"events_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/events",
"assignees_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/assignees{/user}",
"branches_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/branches{/branch}",
"tags_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/tags",
"blobs_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/git/blobs{/sha}",
"git_tags_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/git/tags{/sha}",
"git_refs_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/git/refs{/sha}",
"trees_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/git/trees{/sha}",
"statuses_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/statuses/{sha}",
"languages_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/languages",
"stargazers_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/stargazers",
"contributors_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/contributors",
"subscribers_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/subscribers",
"subscription_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/subscription",
"commits_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/commits{/sha}",
"git_commits_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/git/commits{/sha}",
"comments_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/comments{/number}",
"issue_comment_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/issues/comments{/number}",
"contents_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/contents/{+path}",
"compare_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/compare/{base}...{head}",
"merges_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/merges",
"archive_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/{archive_format}{/ref}",
"downloads_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/downloads",
"issues_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/issues{/number}",
"pulls_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/pulls{/number}",
"milestones_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/milestones{/number}",
"notifications_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/notifications{?since,all,participating}",
"labels_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/labels{/name}",
"releases_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/releases{/id}",
"deployments_url": "https://api.github.com/repos/minimaxir/facebook-page-post-scraper/deployments",
"created_at": "2015-07-20T14:00:27Z",
"updated_at": "2021-02-15T16:01:24Z",
"pushed_at": "2019-05-23T13:20:58Z",
"git_url": "git://github.com/minimaxir/facebook-page-post-scraper.git",
"ssh_url": "[email protected]:minimaxir/facebook-page-post-scraper.git",
"clone_url": "https://github.com/minimaxir/facebook-page-post-scraper.git",
"svn_url": "https://github.com/minimaxir/facebook-page-post-scraper",
"homepage": null,
"size": 1314,
"stargazers_count": 2050,
"watchers_count": 2050,
"language": "Python",
"has_issues": true,
"has_projects": true,
"has_downloads": true,
"has_wiki": true,
"has_pages": false,
"forks_count": 686,
"mirror_url": null,
"archived": true,
"disabled": false,
"open_issues_count": 60,
"license": null,
"forks": 686,
"open_issues": 60,
"watchers": 2050,
"default_branch": "master",
"score": 1
},
{