-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
In this course, you'll learn how to use coroutines in the example of a program that loads the contributors for all of the repositories under the given GitHub organization. | ||
In this course, you'll learn how to use coroutines through the example of a program that loads the contributors for all of the repositories under a given GitHub organization. | ||
|
||
So, you'll be using the GitHub API in your project. To get access, you'll need to provide your GitHub account name and either a password or a token. If you have two-factor authentication enabled, a token will be enough. | ||
So, you'll be utilizing the GitHub API in your project. To gain access, you'll need to provide your GitHub account name and either a password or a token. If you have two-factor authentication enabled, a token will be enough. | ||
|
||
Generate a new GitHub token to use the GitHub API with [your account](https://github.com/settings/tokens/new): | ||
Generate a new GitHub token to access the GitHub API with [your account](https://github.com/settings/tokens/new): | ||
|
||
1. Specify the name of your token, for example, `coroutines-tutorial`: | ||
![Generating token interface](images/generating-token.png) | ||
2. Do not select any scopes. **Click Generate** token at the bottom of the page. | ||
3. Copy the generated token to safe place. You won't be able to see him again in the future. If you lose it, you will need to create a new one. | ||
3. Copy the generated token to a safe place. You won't be able to see it again in the future. If you lose it, you will need to create a new one. | ||
|
||
For a more detailed description, you can look at [this article](https://kotlinlang.org/docs/coroutines-and-channels.html#generate-a-github-developer-token) | ||
For a more detailed description, you can refer to [this article](https://kotlinlang.org/docs/coroutines-and-channels.html#generate-a-github-developer-token). |