Skip to content

Commit 52a3659

Browse files
author
Joaquin Rivera Padron
committed
README minor changes
1 parent 8496135 commit 52a3659

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@ Synopsis
1212

1313
This plugin supports the 3 main calls to the 3scale backend:
1414

15-
- @authrep@ grants access to your API and reports the traffic on it in one call.
16-
- @authorize@ grants access to your API.
17-
- @report@ reports traffic on your API.
15+
- *authrep* grants access to your API and reports the traffic on it in one call.
16+
- *authorize* grants access to your API.
17+
- *report* reports traffic on your API.
1818

19-
3scale supports 3 authentication modes: App Id, User Key and OAuth. The first two are similar on their calls to the backend, they support @authrep@. OAuth differs in its usage two calls are required: first @authorize@ then @report@.
19+
3scale supports 3 authentication modes: App Id, User Key and OAuth. The first two are similar on their calls to the backend, they support *authrep*. OAuth differs in its usage two calls are required: first *authorize* then *report*.
2020

2121
Install
2222
=======
2323

24-
This is a [Maven]:(http://maven.apache.org/) project, download it and install it the typical way.
24+
This is a [Maven](http://maven.apache.org/) project, download it and install it the typical way.
2525

2626
Usage on App Id auth mode
2727
=========================
2828

29-
On App Id mode you call @authrep@ to: grant access to your API, and also report the traffic on it at the same time.
29+
On App Id mode you call *authrep* to: grant access to your API, and also report the traffic on it at the same time.
3030

31-
```
31+
```java
3232
// import the 3scale library into your code
3333
import threescale.v3.api.*;
3434
import threescale.v3.api.impl.*;
@@ -68,9 +68,9 @@ try {
6868
Usage on API Key auth mode
6969
==========================
7070

71-
On API Key mode you call @authrep@ to: grant access to your API, and also report the traffic on it at the same time.
71+
On API Key mode you call *authrep* to: grant access to your API, and also report the traffic on it at the same time.
7272

73-
```
73+
```java
7474
// import the 3scale library into your code
7575
import threescale.v3.api.*;
7676
import threescale.v3.api.impl.*;
@@ -109,9 +109,9 @@ try {
109109
Usage on OAuth auth mode
110110
==========================
111111

112-
On OAuth you have to make two calls, first @authorize@ to grant access to your API and then @report@ the traffic on it.
112+
On OAuth you have to make two calls, first *authorize* to grant access to your API and then *report* the traffic on it.
113113

114-
```
114+
```java
115115
// import the 3scale library into your code
116116
import threescale.v3.api.*;
117117
import threescale.v3.api.impl.*;

0 commit comments

Comments
 (0)