Skip to content

Commit

Permalink
missing commas in oauth code
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonyLeons authored Aug 8, 2019
1 parent a09e085 commit 2ee0655
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ Asana supports OAuth 2. `java-asana` handles some of the details of the OAuth fl
Create a client using your OAuth Client ID and secret:

OAuthApp app = new OAuthApp(
"ASANA_CLIENT_ID"
"ASANA_CLIENT_SECRET"
"ASANA_CLIENT_ID",
"ASANA_CLIENT_SECRET",
"urn:ietf:wg:oauth:2.0:oob"
);
Client client = Client.oauth(app);
Expand Down

0 comments on commit 2ee0655

Please sign in to comment.