I am trying to to use the Bing Spell Check API v5 but I'm running to to many issues.
When requesting to either spell
or proof
with the sentence below, it returns no flagged tokens.
This is a long sentance with some mistakes in here. Its supposed to be a question but i can’t think of a long question. maybe that means i don’t have something selious to ask?
{"_type": "SpellCheck", "flaggedTokens": []}
If I limit the request text to 128 characters it works though. I've tested this in Bing's API testing console it works.
I'm calling the API with what is advised for PHP
(Http_Request2
) with the POST
variation. Also, I'm using a free subscription at the moment but will be upgrade if the application works. Otherwise it looks like I'll have to find another API, which is a shame.
I have tried requesting this many different ways to make sure it's not just my code. I've used cURL
and the application PostMan
but all return the same issue.
Any insight on why this is happening would be greatly appreciated as it's given me hours of confusion!