{"code": 200,"message": "Linking results","data": [["perl",0.86659765243530273],["bash",0.83746224641799927],["django",0.82120096683502197],["java",0.82105296850204468]]}
{"code": 401,"message": "Unauthorized. Invalid secret key: xxxx for permission: write"}
{"code": 400,"message": "Bad request. Text cannot be null"}
from hrflow import Hrflow​client = Hrflow(api_secret="Your API Key", api_user="Your API user email")​​response = client.document.linking.post(text="python", top_n=20)
const client = new Hrflow({api_secret: 'Your API Key',api_user: 'Your API user email'});​client.document.linking.post("python", 20).then(response => {console.log(response);// ...});