Skip to content
This repository has been archived by the owner on Aug 23, 2024. It is now read-only.

Latest commit

 

History

History
19 lines (16 loc) · 1.14 KB

README.md

File metadata and controls

19 lines (16 loc) · 1.14 KB

SpellCheckService

This Azure Function takes a string input from an HTTP Get request and passes this to Bing Spell Check in "Proof" mode, parses the response & returns the suggested correction from the service.

Settings

Add a local.settings.json file in the project root with the following configurations (your Market may be different and the valid modes are 'proof' & 'spell' depending on what you need).':

  • "SubscriptionKey": "YOUR-BING-SPELLCHECK-KEY""
  • "Endpoint": "https://api.bing.microsoft.com",
  • "Path": "/v7.0/spellcheck?",
  • "Market": "en-US",
  • "Mode": "proof"

Notes

  • Some of this code was upcycled from other's works out on the net.

References