You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "To access GitHub APIs: \n\nAuthenticate GitHub API via Basic Authentication\nhttps://developer.github.com/v3/auth/\n\nFor unauthenticated requests, the rate limit allows for up to 60 requests per hour. Unauthenticated requests are associated with the originating IP address, and not the user making requests\nhttps://developer.github.com/v3/#rate-limiting"
42
+
},
43
+
"response": []
44
+
},
45
+
{
46
+
"name": "Check Rate Limit",
47
+
"request": {
48
+
"auth": {
49
+
"type": "basic",
50
+
"basic": [
51
+
{
52
+
"key": "password",
53
+
"value": "<personal-access-token>",
54
+
"type": "string"
55
+
},
56
+
{
57
+
"key": "username",
58
+
"value": "<username>",
59
+
"type": "string"
60
+
}
61
+
]
62
+
},
63
+
"method": "GET",
64
+
"header": [],
65
+
"url": {
66
+
"raw": "https://api.github.com/rate_limit",
67
+
"protocol": "https",
68
+
"host": [
69
+
"api",
70
+
"github",
71
+
"com"
72
+
],
73
+
"path": [
74
+
"rate_limit"
75
+
]
76
+
},
77
+
"description": "Certain Rate Limiting Rules need to be considered when consuming the Github APIs\nhttps://developer.github.com/v3/#rate-limiting"
0 commit comments