From 2ee065543e462cbe83ae857aeca2b5c3b0848866 Mon Sep 17 00:00:00 2001 From: Antony Leons Date: Thu, 8 Aug 2019 14:44:09 +0100 Subject: [PATCH] missing commas in oauth code --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3751b05..e9cf10c 100644 --- a/README.md +++ b/README.md @@ -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);