Hot answers tagged c#
1
string post_data = "client_id={0}&client_secret={1}&code={2}&redirect_uri={3}";
post_data = string.Format(post_data, code, clientId, redirect_url, apiSecret);
Shouldn't that be
string post_data = "client_id={0}&client_secret={1}&code={2}&redirect_uri={3}";
post_data = string.Format(post_data, clientId, apiSecret, code, ...
Only top voted, non community-wiki answers of a minimum length are eligible