- OAuth 2.0 Cookbook
- Adolfo Eloy Nascimento
- 174字
- 2021-07-08 09:34:57
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning. Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Let's create the first web page as index.html inside the src/main/resources/templates directory" A block of code is set as follows:
public class Entry {
private String value;
public Entry(String value)
{ this.value = value; }
public String getValue()
{ return value; }
}
Any command-line input or output is written as follows:
curl -X POST --user clientapp:123456 http://localhost:8080/oauth/token
-H "content-type: application/x-www-form-urlencoded"
-d "code=5sPk8A&grant_type=authorization_code&redirect_uri=http%3A%2F%2Flocalhost%3A9000%2Fcallback&scope=read_profile"
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "click on Authorize so you get redirected back to the redirect URI callback."
- Computer Vision for the Web
- 跟“龍哥”學(xué)C語(yǔ)言編程
- Python自動(dòng)化運(yùn)維快速入門(第2版)
- Cassandra Design Patterns(Second Edition)
- Python GUI Programming Cookbook
- 精通Scrapy網(wǎng)絡(luò)爬蟲
- Visual Basic程序設(shè)計(jì)實(shí)驗(yàn)指導(dǎo)(第4版)
- Apache Mahout Clustering Designs
- 深入實(shí)踐Kotlin元編程
- OpenCV 3 Blueprints
- Building Slack Bots
- Getting Started with React VR
- Eclipse開發(fā)(學(xué)習(xí)筆記)
- Puppet Cookbook(Third Edition)
- Unity與C++網(wǎng)絡(luò)游戲開發(fā)實(shí)戰(zhàn):基于VR、AI與分布式架構(gòu)