DataFlex / Microsoft Graph / Subscription validation
Back to Collection Items
Use ChilkatAx-win32.pkg
Procedure Test
Handle hoHttp
Boolean iSuccess
Variant vResp
Handle hoResp
String sTemp1
Integer iTemp1
Boolean bTemp1
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) Begin
Send CreateComObject of hoHttp
End
// Adds the "Authorization: Bearer <access_token>" header.
Set ComAuthToken Of hoHttp To "<access_token>"
Get ComQuickRequest Of hoHttp "POST" "http://localhost:5000/api/notification?validationToken=something" To vResp
If (IsComObject(vResp)) Begin
Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
Set pvComObject Of hoResp To vResp
End
Get ComLastMethodSuccess Of hoHttp To bTemp1
If (bTemp1 = False) Begin
Get ComLastErrorText Of hoHttp To sTemp1
Showln sTemp1
Procedure_Return
End
Get ComStatusCode Of hoResp To iTemp1
Showln iTemp1
Get ComBodyStr Of hoResp To sTemp1
Showln sTemp1
Send Destroy of hoResp
End_Procedure
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
http://localhost:5000/api/notification?validationToken=something
Postman Collection Item JSON
{
"name": "Subscription validation",
"event": [
{
"listen": "test",
"script": {
"exec": [
"function decodeQueryParam(p) {\r",
" return decodeURIComponent(p.replace(/\\+/g, \" \"));\r",
"}\r",
"\r",
"pm.test(\"Status test\", function () {\r",
" pm.response.to.have.status(200);\r",
"});\r",
"pm.test(\"Content type test\", function () {\r",
" pm.response.to.have.header(\"Content-Type\");\r",
" pm.expect(pm.response.headers.get(\"Content-Type\")).to.include(\"text/plain\");\r",
"});\r",
"pm.test(\"Response body test\", function () {\r",
" pm.response.to.have.body(decodeQueryParam(pm.request.url.query.get(\"validationToken\")));\r",
"});"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
],
"url": {
"raw": "http://localhost:5000/api/notification?validationToken=something",
"protocol": "http",
"host": [
"localhost"
],
"port": "5000",
"path": [
"api",
"notification"
],
"query": [
{
"key": "validationToken",
"value": "something",
"description": "random validation token passed by the Microsoft Graph when validating the notificationURL"
}
]
},
"description": "Allows you to validate whether the notification endpoint you are building properly passed Microsoft Graph Subscription creation validation.\nThe response content type should be text/plain, code 200 OK and the body the information passed by the validationToken query parameter"
},
"response": [
]
}