We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34faa30 commit c603421Copy full SHA for c603421
1 file changed
content/v3/auth.md
@@ -33,7 +33,7 @@ would authenticate you if you replace `<username>` with your GitHub username.
33
(cURL will prompt you to enter the password.)
34
35
``` command-line
36
-$ curl -u >username> https://api.github.com/user
+$ curl -u <em>username</em> https://api.github.com/user
37
```
38
39
### Via OAuth Tokens
@@ -42,7 +42,7 @@ Alternatively, you can use [personal access
42
tokens][personal-access-tokens] or OAuth tokens instead of your password.
43
44
45
-$ curl -u >username>:>token> https://api.github.com/user
+$ curl -u <em>username</em>:<em>token</em> https://api.github.com/user
46
47
48
This approach is useful if your tools only support Basic Authentication but you
0 commit comments