Feb 04, 2022 12:00 AM
Hello, i got this error but i don’t have any idea where to look for to fix this issue
1. Error {name: "SyntaxError"}
1. name: "SyntaxError"
Here is the code :
const wordAI = await remoteFetchAsync("https://github.com/braytonstafford/wordai",
{
method : "POST",
header : {
'Content-type' : "application/json"
},
email: email,
key: wakey,
input : "This is a test",
rewrite_num: 2,
uniqueness : 3,
output: 'json',
quality: 'Regular',
});
try {
const data = await wordAI.json()
console.log('response data?', data)
} catch(error) {
console.log('Error happened here!')
console.error(error)
}
Feb 04, 2022 10:16 AM
I’ll bet this is not the endpoint for the API.
Feb 06, 2022 11:20 PM
Yes sorry i fetch the correct github api link. Here it is:
But i get this error after.
Error: Response status was 301 ‘Moved Permanently’ but redirect mode was set to ‘error’
Here is my new code, I checked first if i can connect the github properly
let url2 = "https://github.com/braytonstafford/wordai.git";
const headers2 = {
'Content-Type': 'application/json',
'method' : 'GET'
}
const wordAI = await remoteFetchAsync(url2, headers2);
try {
const data = await wordAI.json()
console.log('response data?', data)
} catch(error) {
console.log('Error happened here!')
console.error(error)
}
Feb 07, 2022 04:42 AM
GitHub pages are not API endpoints. You need to sign up for an account at WordAI, login, locate the documentation that tells you what API endpoint to use for requests.
Feb 07, 2022 06:42 PM
Yes, but the WordAPI documentation only has the example for curl fetch, i don’t know any alternative code that is related to JSON for curl. i only found this github.
Feb 08, 2022 07:39 AM
I assume you have an account and you are paying $57/month for the service.
Go to this URL and look for the getting started section and note the API endpoint. That’s the only way to utilize this API. Sending WordAPI requests to GitHub will not magically provide free access to their paid service.
Feb 08, 2022 06:31 PM
Yes, I’ve taken a look on the wordai documentation on API. As i don’t have clue how to manage the API endpoint requests on JSON as they provided an example of using curl method only.
Feb 09, 2022 01:00 AM
@Bill.French May i add a new question here, Is there a way to convert the record to utf-8?
As my records contains some of this text “Alès”
Feb 09, 2022 06:30 AM
Please publish that example so we can see it.
Feb 09, 2022 06:34 AM
Yes. Include Content-type: application/json; charset=utf-8
in the message header.