Viewing 5 posts - 1 through 5 (of 5 total)
I now added it as attachement, hope you can see it 🙂
October 19, 2021 at 2:57 pm
Yes, I already did the test from CMD and on a dedicated API platform.
I added a screen shot from the debug to the preceding post..
October 19, 2021 at 2:24 pm
Yes, I'm using an SSIS script component with SSDT 2015, and I'm able to Debug, when I put a MessageBox.Show(), I can see the link modified with the page parameter...
October 19, 2021 at 2:01 pm
Thanks for your reply, here's my code :
HttpClient client = new HttpClient();
client.BaseAddress = new Uri("https://api.***.***/***/******/**/**");
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("*****", "********************************");
string APIUrl = string.Format("https://api.***.***/***/******/**/**");
var response = client.GetAsync(APIUrl).Result;
IEnumerable<string> values;
values = response.Headers.GetValues("X-Total-Count");
int h...
October 19, 2021 at 9:48 am
In fact I had put an old version of the asdatabase file as I made several tests,
Thank you very much for your reactivity SSChampion.
January 9, 2015 at 2:04 am
Viewing 5 posts - 1 through 5 (of 5 total)