hello,
please help...
this is the message:
{StatusCode: 404, ReasonPhrase: 'Not Found', Version: 1.1, Content: System.Net.Http.StreamContent, Headers:
{
Cache-Control: private, s-maxage=0
Date: Mon, 25 May 2020 16:52:46 GMT
Set-Cookie: _culture=; path=/
X-Android-Received-Millis: 1590425667403
X-Android-Response-Source: NETWORK 404
X-Android-Selected-Protocol: http/1.1
X-Android-Sent-Millis: 1590425667193
Content-Length: 0
}}
this is my config in c#:
var builder = new UriBuilder("https://api.biblia.com/v1/bible/content/RVR60.json?");
var query = HttpUtility.ParseQueryString(builder.Query);
query["passage"] = "Josué10.25";
query["key"] = "MY API KEY";
builder.Query = query.ToString();
client.BaseAddress = new Uri(builder.ToString());
var responseString = await client.GetAsync(client.BaseAddress);