removed space from auth url

This commit is contained in:
skilion 2015-09-27 18:56:50 +02:00
parent b4aeda818a
commit 88b11433a7

View file

@ -43,7 +43,7 @@ final class OneDriveApi
void authorize()
{
import std.stdio, std.regex;
string url = authUrl ~ "?client_id=" ~ clientId ~ "&scope=wl.offline_access onedrive.readwrite&response_type=code&redirect_url=" ~ redirectUrl;
string url = authUrl ~ "?client_id=" ~ clientId ~ "&scope=wl.offline_access%20onedrive.readwrite&response_type=code&redirect_url=" ~ redirectUrl;
writeln("Authorize this app visiting:\n");
writeln(url, "\n");