skip to Main Content

C# Ebay API Post-Order check_eligibility using HttpWebRequest

I'm trying to use the check_eligibility call from the eBay Post-Order API in C# very unsuccessfully. Every time I get a bad response. Here is one way I've tried: string url = "https://api.ebay.com/post-order/v2/cancellation/check_eligibility"; HttpWebRequest cancelOrderRequest = (HttpWebRequest)WebRequest.Create(url); cancelOrderRequest.Headers.Add("Authorization", "TOKEN "…

VIEW QUESTION

Facebook api – React Native fetch Network request failed iOS

I'm trying to send a GET request to the Facebook Graph API using fetch: var url = "https://graph.facebook.com/v2.7/" +FACEBOOK_APP_ID +"?fields=context" +"{friends_using_app{id,name,picture.type(normal)}}" +"&access_token="+_this.props.user.facebook_access_token; fetch(url) .then((response) => response.json()) .then((responseJson) => { console.log(responseJson); }) .catch(function(error) { console.log(error); }); But I'm getting TypeError: Network…

VIEW QUESTION
Back To Top
Search