Skip to content

Commit

Permalink
Merge pull request #90 from AntonyLeons/patch-1
Browse files Browse the repository at this point in the history
missing commas in oauth code
  • Loading branch information
rossgrambo-zz authored Aug 8, 2019
2 parents a09e085 + 2ee0655 commit a0e3f28
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 a0e3f28

Please sign in to comment.