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
Console.WriteLine($"What is the GitHub REST API Rate Limit? {restApiRateLimitDataFromHeaders.RateLimit}");// What is the GitHub REST API Rate Limit? 5000
20
-
Console.WriteLine($"Have I reached the Maximum REST API Limit? {restApiRateLimitDataFromHeaders.HasReachedMaximumApiLimit}");// Have I reached the Maximum REST API Limit? False
21
-
Console.WriteLine($"How many REST API requests do I have remaining? {restApiRateLimitDataFromHeaders.RemainingRequestCount}");// How many REST API requests do I have remaining? 4956
22
-
Console.WriteLine($"How long until the GitHub REST API Rate Limit resets? {restApiRateLimitDataFromHeaders.RateLimitTimeRemaining}");// How long until the GitHub REST API Rate Limit resets? 00:29:12.4134330
23
-
Console.WriteLine($"Did the GitHub REST API Request include a Bearer Token? {restApiRateLimitDataFromHeaders.IsResponseFromAuthenticatedRequest}");// Did GitHub REST API Request include a Bearer Token? True
24
-
25
-
Console.WriteLine();
26
-
27
-
varapiRateLimits=awaitGetApiRateLimits();
28
-
29
-
// REST API Results
30
-
Console.WriteLine($"What is the GitHub REST API Rate Limit? {apiRateLimits.RestApi.RateLimit}");// What is the GitHub REST API Rate Limit? 5000
31
-
Console.WriteLine($"How many REST API requests do I have remaining? {apiRateLimits.RestApi.RemainingRequestCount}");// How many REST API requests do I have remaining? 4983
32
-
Console.WriteLine($"How long until the GitHub REST API Rate Limit resets? {apiRateLimits.RestApi.RateLimitReset_TimeRemaining}");// How long until the GitHub REST API Rate Limit resets? 00:40:13.8035515
33
-
Console.WriteLine($"When does the GitHub REST API Rate Limit reset? {apiRateLimits.RestApi.RateLimitReset_DateTime}");// When does the GitHub REST API Rate Limit reset? 10/29/2020 3:28:58 AM +00:00
34
-
35
-
Console.WriteLine();
36
-
37
-
// GraphQL API Results
38
-
Console.WriteLine($"What is the GitHub GraphQL API Rate Limit? {apiRateLimits.GraphQLApi.RateLimit}");// What is the GitHub GraphQL API Rate Limit? 5000
39
-
Console.WriteLine($"How many GraphQL API requests do I have remaining? {apiRateLimits.GraphQLApi.RemainingRequestCount}");// How many GraphQL API requests do I have remaining? 5000
40
-
Console.WriteLine($"How long until the GitHub GraphQL API Rate Limit resets? {apiRateLimits.GraphQLApi.RateLimitReset_TimeRemaining}");// How long until the GitHub GraphQL API Rate Limit resets? 00:59:59.8034526
41
-
Console.WriteLine($"When does the GitHub GraphQL API Rate Limit reset? {apiRateLimits.GraphQLApi.RateLimitReset_DateTime}");// When does the GitHub GraphQL API Rate Limit reset? 10/29/2020 3:48:44 AM +00:00
42
-
43
-
Console.WriteLine();
44
-
45
-
// Search API Results
46
-
Console.WriteLine($"What is the GitHub Search API Rate Limit? {apiRateLimits.SearchApi.RateLimit}");// What is the GitHub Search API Rate Limit? 30
47
-
Console.WriteLine($"How many Search API requests do I have remaining? {apiRateLimits.SearchApi.RemainingRequestCount}");// How many Search API requests do I have remaining? 30
48
-
Console.WriteLine($"How long until the GitHub Search API Rate Limit resets? {apiRateLimits.SearchApi.RateLimitReset_TimeRemaining}");// How long until the GitHub Search API Rate Limit resets? 00:00:59.8034988
49
-
Console.WriteLine($"When does the GitHub Search API Rate Limit reset? {apiRateLimits.SearchApi.RateLimitReset_DateTime}");// When does the GitHub Search API Rate Limit reset? 10/29/2020 2:49:44 AM +00:00
50
-
51
-
Console.WriteLine();
52
-
53
-
// Source Import API Results
54
-
Console.WriteLine($"What is the GitHub Source Import API Rate Limit? {apiRateLimits.SourceImport.RateLimit}");// What is the GitHub Source Import API Rate Limit? 100
55
-
Console.WriteLine($"How many Source Import API requests do I have remaining? {apiRateLimits.SourceImport.RemainingRequestCount}");// How many Source Import API requests do I have remaining? 100
56
-
Console.WriteLine($"How long until the GitHub Source Import API Rate Limit resets? {apiRateLimits.SourceImport.RateLimitReset_TimeRemaining}");// How long until the GitHub Source Import API Rate Limit resets? 00:00:59.8034154
57
-
Console.WriteLine($"When does the GitHub Source Import API Rate Limit reset? {apiRateLimits.SourceImport.RateLimitReset_DateTime}");// When does the GitHub Source Import API Rate Limit reset? 10/29/2020 2:49:44 AM +00:00
58
-
59
-
Console.WriteLine();
60
-
61
-
// App Manifest Configuration API Results
62
-
Console.WriteLine($"What is the GitHub App Manifest Configuration API Rate Limit? {apiRateLimits.AppManifestConfiguration.RateLimit}");// What is the GitHub App Manifest Configuration API Rate Limit? 5000
63
-
Console.WriteLine($"How many App Manifest Configuration API requests do I have remaining? {apiRateLimits.AppManifestConfiguration.RemainingRequestCount}");// How many App Manifest Configuration API requests do I have remaining? 5000
64
-
Console.WriteLine($"How long until the GitHub App Manifest Configuration API Rate Limit resets? {apiRateLimits.AppManifestConfiguration.RateLimitReset_TimeRemaining}");// How long until the GitHub App Manifest Configuration API Rate Limit resets? 00:59:59.8033802
65
-
Console.WriteLine($"When does the GitHub App Manifest Configuration API Rate Limit reset? {apiRateLimits.AppManifestConfiguration.RateLimitReset_DateTime}");// When does the GitHub App Manifest Configuration API Rate Limit reset? 10/29/2020 3:48:44 AM +00:00
66
-
19
+
Console.WriteLine($"What is the GitHub REST API Rate Limit? {restApiRateLimitDataFromHeaders.RateLimit}");// What is the GitHub REST API Rate Limit? 5000
20
+
Console.WriteLine($"Have I reached the Maximum REST API Limit? {restApiRateLimitDataFromHeaders.HasReachedMaximumApiLimit}");// Have I reached the Maximum REST API Limit? False
21
+
Console.WriteLine($"How many REST API requests do I have remaining? {restApiRateLimitDataFromHeaders.RemainingRequestCount}");// How many REST API requests do I have remaining? 4956
22
+
Console.WriteLine($"How long until the GitHub REST API Rate Limit resets? {restApiRateLimitDataFromHeaders.RateLimitTimeRemaining}");// How long until the GitHub REST API Rate Limit resets? 00:29:12.4134330
23
+
Console.WriteLine($"Did the GitHub REST API Request include a Bearer Token? {restApiRateLimitDataFromHeaders.IsResponseFromAuthenticatedRequest}");// Did GitHub REST API Request include a Bearer Token? True
24
+
67
25
Console.WriteLine();
68
26
69
-
// Code Scanning Upload API Results
70
-
Console.WriteLine($"What is the GitHub Code Scanning Upload API Rate Limit? {apiRateLimits.CodeScanningUpload.RateLimit}");// What is the GitHub Code Scanning Upload API Rate Limit? 500
71
-
Console.WriteLine($"How many Code Scanning Upload API requests do I have remaining? {apiRateLimits.CodeScanningUpload.RemainingRequestCount}");// How many Code Scanning Upload API requests do I have remaining? 500
72
-
Console.WriteLine($"How long until the GitHub Code Scanning Upload API Rate Limit resets? {apiRateLimits.CodeScanningUpload.RateLimitReset_TimeRemaining}");// How long until the GitHub Code Scanning Upload API Rate Limit resets? 00:59:59.8033455
73
-
Console.WriteLine($"When does the GitHub Code Scanning Upload API Rate Limit reset? {apiRateLimits.CodeScanningUpload.RateLimitReset_DateTime}");// When does the GitHub Code Scanning Upload API Rate Limit reset? 10/29/2020 3:48:44 AM +00:00
74
-
27
+
varapiRateLimits=awaitGetApiRateLimits();
28
+
29
+
// REST API Results
30
+
Console.WriteLine($"What is the GitHub REST API Rate Limit? {apiRateLimits.RestApi.RateLimit}");// What is the GitHub REST API Rate Limit? 5000
31
+
Console.WriteLine($"How many REST API requests do I have remaining? {apiRateLimits.RestApi.RemainingRequestCount}");// How many REST API requests do I have remaining? 4983
32
+
Console.WriteLine($"How long until the GitHub REST API Rate Limit resets? {apiRateLimits.RestApi.RateLimitReset_TimeRemaining}");// How long until the GitHub REST API Rate Limit resets? 00:40:13.8035515
33
+
Console.WriteLine($"When does the GitHub REST API Rate Limit reset? {apiRateLimits.RestApi.RateLimitReset_DateTime}");// When does the GitHub REST API Rate Limit reset? 10/29/2020 3:28:58 AM +00:00
34
+
35
+
Console.WriteLine();
36
+
37
+
// GraphQL API Results
38
+
Console.WriteLine($"What is the GitHub GraphQL API Rate Limit? {apiRateLimits.GraphQLApi.RateLimit}");// What is the GitHub GraphQL API Rate Limit? 5000
39
+
Console.WriteLine($"How many GraphQL API requests do I have remaining? {apiRateLimits.GraphQLApi.RemainingRequestCount}");// How many GraphQL API requests do I have remaining? 5000
40
+
Console.WriteLine($"How long until the GitHub GraphQL API Rate Limit resets? {apiRateLimits.GraphQLApi.RateLimitReset_TimeRemaining}");// How long until the GitHub GraphQL API Rate Limit resets? 00:59:59.8034526
41
+
Console.WriteLine($"When does the GitHub GraphQL API Rate Limit reset? {apiRateLimits.GraphQLApi.RateLimitReset_DateTime}");// When does the GitHub GraphQL API Rate Limit reset? 10/29/2020 3:48:44 AM +00:00
42
+
43
+
Console.WriteLine();
44
+
45
+
// Search API Results
46
+
Console.WriteLine($"What is the GitHub Search API Rate Limit? {apiRateLimits.SearchApi.RateLimit}");// What is the GitHub Search API Rate Limit? 30
47
+
Console.WriteLine($"How many Search API requests do I have remaining? {apiRateLimits.SearchApi.RemainingRequestCount}");// How many Search API requests do I have remaining? 30
48
+
Console.WriteLine($"How long until the GitHub Search API Rate Limit resets? {apiRateLimits.SearchApi.RateLimitReset_TimeRemaining}");// How long until the GitHub Search API Rate Limit resets? 00:00:59.8034988
49
+
Console.WriteLine($"When does the GitHub Search API Rate Limit reset? {apiRateLimits.SearchApi.RateLimitReset_DateTime}");// When does the GitHub Search API Rate Limit reset? 10/29/2020 2:49:44 AM +00:00
50
+
51
+
Console.WriteLine();
52
+
53
+
// Source Import API Results
54
+
Console.WriteLine($"What is the GitHub Source Import API Rate Limit? {apiRateLimits.SourceImport.RateLimit}");// What is the GitHub Source Import API Rate Limit? 100
55
+
Console.WriteLine($"How many Source Import API requests do I have remaining? {apiRateLimits.SourceImport.RemainingRequestCount}");// How many Source Import API requests do I have remaining? 100
56
+
Console.WriteLine($"How long until the GitHub Source Import API Rate Limit resets? {apiRateLimits.SourceImport.RateLimitReset_TimeRemaining}");// How long until the GitHub Source Import API Rate Limit resets? 00:00:59.8034154
57
+
Console.WriteLine($"When does the GitHub Source Import API Rate Limit reset? {apiRateLimits.SourceImport.RateLimitReset_DateTime}");// When does the GitHub Source Import API Rate Limit reset? 10/29/2020 2:49:44 AM +00:00
58
+
59
+
Console.WriteLine();
60
+
61
+
// App Manifest Configuration API Results
62
+
Console.WriteLine($"What is the GitHub App Manifest Configuration API Rate Limit? {apiRateLimits.AppManifestConfiguration.RateLimit}");// What is the GitHub App Manifest Configuration API Rate Limit? 5000
63
+
Console.WriteLine($"How many App Manifest Configuration API requests do I have remaining? {apiRateLimits.AppManifestConfiguration.RemainingRequestCount}");// How many App Manifest Configuration API requests do I have remaining? 5000
64
+
Console.WriteLine($"How long until the GitHub App Manifest Configuration API Rate Limit resets? {apiRateLimits.AppManifestConfiguration.RateLimitReset_TimeRemaining}");// How long until the GitHub App Manifest Configuration API Rate Limit resets? 00:59:59.8033802
65
+
Console.WriteLine($"When does the GitHub App Manifest Configuration API Rate Limit reset? {apiRateLimits.AppManifestConfiguration.RateLimitReset_DateTime}");// When does the GitHub App Manifest Configuration API Rate Limit reset? 10/29/2020 3:48:44 AM +00:00
66
+
67
+
Console.WriteLine();
68
+
69
+
// Code Scanning Upload API Results
70
+
Console.WriteLine($"What is the GitHub Code Scanning Upload API Rate Limit? {apiRateLimits.CodeScanningUpload.RateLimit}");// What is the GitHub Code Scanning Upload API Rate Limit? 500
71
+
Console.WriteLine($"How many Code Scanning Upload API requests do I have remaining? {apiRateLimits.CodeScanningUpload.RemainingRequestCount}");// How many Code Scanning Upload API requests do I have remaining? 500
72
+
Console.WriteLine($"How long until the GitHub Code Scanning Upload API Rate Limit resets? {apiRateLimits.CodeScanningUpload.RateLimitReset_TimeRemaining}");// How long until the GitHub Code Scanning Upload API Rate Limit resets? 00:59:59.8033455
73
+
Console.WriteLine($"When does the GitHub Code Scanning Upload API Rate Limit reset? {apiRateLimits.CodeScanningUpload.RateLimitReset_DateTime}");// When does the GitHub Code Scanning Upload API Rate Limit reset? 10/29/2020 3:48:44 AM +00:00
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET -->
0 commit comments