Skip to content

Commit 4d7a88e

Browse files
authored
[readme] Change variable naming in example
This is a more common convention, which is also used in your own examples: https://github.com/scribejava/scribejava/blob/master/scribejava-apis/src/test/java/com/github/scribejava/apis/examples/Google20Example.java#L27-L35
1 parent 3a07d71 commit 4d7a88e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
Who said OAuth/OAuth2 was difficult? Configuring ScribeJava is __so easy your grandma can do it__! check it out:
1111

1212
```java
13-
OAuthService service = new ServiceBuilder(YOUR_API_KEY)
14-
.apiSecret(YOUR_API_SECRET)
13+
OAuthService service = new ServiceBuilder(YOUR_CLIENT_ID)
14+
.apiSecret(YOUR_CLIENT_SECRET)
1515
.build(LinkedInApi20.instance());
1616
```
1717

0 commit comments

Comments
 (0)