简体   繁体   中英

Paypal Rest Api With RestSharp not working in xamarin android

I have got error with RestSharp component when i am call Paypal Rest API.

I have the following code using Xamarin for Android.

    public async Task<PayPalGetTokenResponse> GetAccessToken()
    {
        var restRequest = new RestRequest("/oauth2/token", Method.POST);
        // Add headers
        restRequest.AddHeader("Accept", "application/json");
        restRequest.AddHeader("Accept-Language", "en_US");

        // Make Authorization header
        restClient.Authenticator = new HttpBasicAuthenticator(Config.ApiClientId, Config.ApiSecret);

        // add data to send
        restRequest.AddParameter("grant_type", "client_credentials");

        var response = restClient.Execute<PayPalGetTokenResponse>(restRequest);

        response.Data.DisplayError = CheckResponseStatus(response, HttpStatusCode.OK);

        return response.Data;
    }

But got error :"Error: SecureChannelFailure (The authentication or decryption has failed.)"

I have Also use ModernHttpClient but got same error

 public async Task<PayPalGetTokenResponse> GetAccessToken()
 {         
        string clientId = Config.ApiClientId;
        string secret = Config.ApiSecret;
        string oAuthCredentials =      Convert.ToBase64String(Encoding.Default.GetBytes(clientId + ":" + secret));
        string uriString = Config.ApiUrl+"/oauth2/token";
        PayPalGetTokenResponse result;

        HttpClient client = new HttpClient(new NativeMessageHandler());
        var h_request = new HttpRequestMessage(HttpMethod.Post, uriString);
        h_request.Headers.Authorization = new AuthenticationHeaderValue("Basic", oAuthCredentials);
        h_request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
        h_request.Headers.AcceptLanguage.Add(new StringWithQualityHeaderValue("en_US"));
        h_request.Content = new StringContent("grant_type=client_credentials", UTF8Encoding.UTF8);
        try
        {

            HttpResponseMessage response = await client.SendAsync(h_request);
            //if call failed ErrorResponse created...simple class with response properties
            if (!response.IsSuccessStatusCode)
            {
                var error = await response.Content.ReadAsStringAsync();
                var errResp = JsonConvert.DeserializeObject<string>(error);
                //throw new PayPalException { error_name = errResp.name, details = errResp.details, message = errResp.message };
            }
            var success = await response.Content.ReadAsStringAsync();
            result = JsonConvert.DeserializeObject<PayPalGetTokenResponse>(success);
        }
        catch (Exception)
        {
            throw new HttpRequestException("Request to PayPal Service failed.");
        }
        return result;
    }

Have you tried to force to modern day SSL protocol?

ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

This works for me:

if (ServicePointManager.SecurityProtocol != SecurityProtocolType.Tls12)
    ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; 

var client = new RestClient(payPalURL) { 
    Encoding = Encoding.UTF8 
};
var authRequest = new RestRequest("oauth2/token", Method.POST) {
    RequestFormat = DataFormat.Json
};
client.Authenticator = new HttpBasicAuthenticator(clientId, secret);
authRequest.AddParameter("grant_type","client_credentials");
var authResponse = client.Execute(authRequest);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM