Paraphraser

免费增值
通过 Ahmed Javed | 已更新 vor 3 Monaten | Text Analysis
人气

0 / 10

延迟

487ms

服务等级

0%

Health Check

N/A

返回所有讨论

why do i keep getting "undefined" responses?

Rapid account: Bypassgptdetection
bypassgptdetection
vor einem Jahr

I’m trying to implement this api into an html code that generates a text box, sends the user inputted text to the api, and has the api return and display the paraphrased text to the user.

Every time i eneter text into this text box however i receive a response reading “undefined”. I checked my logs and the api is successfully receiving and generating an output each time it is called, but the response is always displayed as “undefined”?

Why is this? Any advice to fix this?

Rapid account: Ahmedjaved 701
ahmedjaved701 Commented vor einem Jahr

Change this line
then(data => outputTextArea.innerHTML = data.rewrite)
to this line
then(data => outputTextArea.innerHTML = data.response[0])

Rapid account: Bypassgptdetection
bypassgptdetection Commented vor einem Jahr

thanks a lot. where exactly do i place this code? i tried implementing it but think i misplaced it because now i’m getting no response displayed.

also, i upgraded my plan so we’ll have more abilities to test.

Rapid account: Ahmedjaved 701
ahmedjaved701 Commented vor einem Jahr

document.querySelector(‘button’).addEventListener(‘click’, function() {
const options = {
method: ‘POST’,
headers: {
‘content-type’: ‘application/json’,
‘X-RapidAPI-Key’: ‘453cbd7924msh925043c91be0007p151396jsnd01cedc0bccf’,
‘X-RapidAPI-Host’: ‘paraphraser2.p.rapidapi.com
},
body: JSON.stringify({
variations: 0,
source: ‘en’,
sentence_wise: false,
text: input.value
})
};

fetch('https://paraphraser2.p.rapidapi.com/v2/generate/text', options)
  .then(response => response.json())
  .then(data => outputTextArea.innerHTML = data.response[0])
  .catch(err => console.error(err));

});

This code should work now. Your free daily qouta also been exceeded.

Rapid account: Bypassgptdetection
bypassgptdetection Commented vor einem Jahr

My code is below as follows:

<!DOCTYPE html>
<html>
<head>
<meta charset=“UTF-8”>
<title>Text Box Example</title>
</head>
<body>
<center>
<label for=“input-text”>Paste ChatGPT Text:</label>
<br>
<textarea id=“input-text” style=“width: 330px; height: 640px;”></textarea>
<br>
<button onclick=“paraphraseText()”>Generate</button>
<br>
<p id=“output-text”></p>
</center>
<script type=“text/javascript”>
var input = document.getElementById(“input-text”);
var outputTextArea = document.getElementById(“output-text”);

  document.querySelector('button').addEventListener('click', function() {
    const options = {
      method: 'POST',
      headers: {
        'content-type': 'application/json',
        'X-RapidAPI-Key': '453cbd7924msh925043c91be0007p151396jsnd01cedc0bccf',
        'X-RapidAPI-Host': 'paraphraser2.p.rapidapi.com'
      },
      body: JSON.stringify({
        variations: 0,
source: 'en',
sentence_wise: false,
        text: input.value
      })
    };

    fetch('https://paraphraser2.p.rapidapi.com/v2/generate/text', options)
      .then(response => response.json())
      .then(data => outputTextArea.innerHTML = data.rewrite)
      .catch(err => console.error(err));
  });
</script>

</body>
</html>

Rapid account: Ahmedjaved 701
ahmedjaved701 Commented vor einem Jahr

Okay, So maybe this issue has something to do with you code logic. Is there any repository where I can see you code in order to help you?

Rapid account: Ahmedjaved 701
ahmedjaved701 Commented vor einem Jahr

API seems to be working fine, Can you provide request payload of API you are trying to hit?

Rapid account: Bypassgptdetection
bypassgptdetection Commented vor einem Jahr

thank you!

Rapid account: Ahmedjaved 701
ahmedjaved701 Commented vor einem Jahr

Hello,

Maybe that has something to do on our side, Let me see it what is the issue and get back to you!

加入讨论 - 在下面添加评论:

登录/注册以发布新的评论