should fix the invalid_grant error

This commit is contained in:
Athou
2013-04-16 06:53:00 +02:00
parent c35363a8cb
commit 877d74eef2

View File

@@ -39,6 +39,7 @@ public class GoogleImportRedirectPage extends WebPage {
builder.addParameter("scope", SCOPE);
builder.addParameter("approval_prompt", "force");
builder.addParameter("client_id", clientId);
builder.addParameter("access_type", "offline");
throw new RedirectToUrlException(builder.build().toString());
} catch (URISyntaxException e) {