2

MainViewModel:

 public async Task<string> Httpclient(string link,string oauthToken)
        {    

            HttpClient client = new HttpClient();
            client.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", oauthToken);

            HttpResponseMessage response = await client.PostAsync(link,new StringContent(""));
            response.Content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
            return await response.Content.ReadAsStringAsync();
        }

Get_account_ViewModel:

public class Get_Current_Account_ViewModel
    {
        MainViewModel mainViewModel = new MainViewModel();
        public async Task<Model.Get_Current_Account.RootObject> get_current_account(string _accessToken)
        {
            var query = await mainViewModel.Httpclient("https://api.dropboxapi.com/2/users/get_current_account?access_token=_accessToken",_accessToken);
            if (query != null)
            {
                var get_data = JsonConvert.DeserializeObject<Model.Get_Current_Account.RootObject>(query);
                return get_data;
            }
            else
                return null;
        }

I tried on two ways:

  • the first way: I got a problem is

Error in call to API function "users/get_current_account": Unexpected URL params: "access_token" on Dropbox API

at

var query = await mainViewModel.Httpclient("https://api.dropboxapi.com/2/users/get_current_account?access_token=_accessToken",_accessToken);

  • second way: Error in call to API function "users/get_current_account": Bad HTTP "Content-Type" header: "text/plain; charset=utf-8". Expecting one of "application/json", "application/json; charset=utf-8", "text/plain; charset=dropbox-cors-hack". when I remove ?access_token=_accessToken at var query.

Please everyone solve this problem. I can not fix it. thanks.

1

1 Answer 1

0

You were right to get rid of the access_token parameter, since, as the error says, that's not a valid parameter.

The next error indicates that you're sending the wrong Content-Type header, so try sending the right one. E.g.

HttpResponseMessage response = await client.PostAsync(
    link, new StringContent("", System.Text.Encoding.UTF8, "application/json"));

(This code is untested, just reading the docs on StringContent.)

5
  • Error in call to API function \"users/get_current_account\": request body: could not decode input as JSON Commented Feb 15, 2016 at 3:53
  • 1
    Perhaps try passing "null", which is valid JSON.
    – user94559
    Commented Feb 15, 2016 at 16:48
  • 1
    Did you try passing "null" as I suggested? Though honestly, I think an empty body should be fine. Maybe you can share your current code.
    – user94559
    Commented Feb 15, 2016 at 23:09
  • this code is currentlly. your mean HttpResponseMessage response = await client.PostAsync( link, new StringContent(NULL, System.Text.Encoding.UTF8, "application/json")); Commented Feb 16, 2016 at 1:10
  • I DON'T UNDERSTAND YOUR MIND. Commented Feb 16, 2016 at 1:11

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.