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
Copy file name to clipboardExpand all lines: README.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,23 +12,23 @@ Synopsis
12
12
13
13
This plugin supports the 3 main calls to the 3scale backend:
14
14
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.
18
18
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*.
20
20
21
21
Install
22
22
=======
23
23
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.
25
25
26
26
Usage on App Id auth mode
27
27
=========================
28
28
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.
30
30
31
-
```
31
+
```java
32
32
// import the 3scale library into your code
33
33
importthreescale.v3.api.*;
34
34
importthreescale.v3.api.impl.*;
@@ -68,9 +68,9 @@ try {
68
68
Usage on API Key auth mode
69
69
==========================
70
70
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.
72
72
73
-
```
73
+
```java
74
74
// import the 3scale library into your code
75
75
importthreescale.v3.api.*;
76
76
importthreescale.v3.api.impl.*;
@@ -109,9 +109,9 @@ try {
109
109
Usage on OAuth auth mode
110
110
==========================
111
111
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.
0 commit comments