ERROR!
------------------- GenerateCode ----------------------
ImpliedContentType: application/json
explicitContentType: application/json
---- begin chilkat script ----
// This example assumes the Chilkat API to have been previously unlocked.
// See {{-global_unlock:::Global Unlock Sample-}} for sample code.
new Http http;
ckbool success;
// Use this online tool to generate code from sample JSON: {{.https://tools.chilkat.io/jsonCreate|||Generate Code to Create JSON.}}
// The following JSON is sent in the request body.
// {
// "requests": [
// {
// "entityTypes": [
// "driveItem"
// ],
// "query": {
// "queryString": "contoso",
// "queryString": "contoso filetype:pdf OR filetype:docx",
// "queryString": "contoso path:\"https://contoso.sharepoint.com/sites/Team Site/Documents/\\"
// }
// }
// ]
// }
new JsonObject json;
ignore = json.UpdateString("requests[0].entityTypes[0]","driveItem");
ignore = json.UpdateString("requests[0].query.queryString","contoso");
ignore = json.UpdateString("requests[0].query.queryString","contoso filetype:pdf OR filetype:docx");
ignore = json.UpdateString("requests[0].query.queryString","contoso path:\"https://contoso.sharepoint.com/sites/Team Site/Documents/\");
// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>";
call http.SetRequestHeader("Content-Type","application/json");
HttpResponse resp = http.PostJson3("https://graph.microsoft.com/beta/search/query","application/json",json);
if (http.LastMethodSuccess == ckfalse) {
println http.LastErrorText;
return;
}
println resp.StatusCode;
println resp.BodyStr;
delete resp;
---- end chilkat script ----
DataFlex / Microsoft Graph / Search files and folders
Back to Collection Items
Use ChilkatAx-win32.pkg
Procedure Test
Handle hoHttp
Boolean iSuccess
Handle hoJson
// 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
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "requests": [
// {
// "entityTypes": [
// "driveItem"
// ],
// "query": {
// "queryString": "contoso",
// "queryString": "contoso filetype:pdf OR filetype:docx",
// "queryString": "contoso path:\"https://contoso.sharepoint.com/sites/Team Site/Documents/\\"
// }
// }
// ]
// }
Get Create (RefClass(cComChilkatJsonObject)) To hoJson
If (Not(IsComObjectCreated(hoJson))) Begin
Send CreateComObject of hoJson
End
Get ComUpdateString Of hoJson "requests[0].entityTypes[0]" "driveItem" To iSuccess
Get ComUpdateString Of hoJson "requests[0].query.queryString" "contoso" To iSuccess
Get ComUpdateString Of hoJson "requests[0].query.queryString" "contoso filetype:pdf OR filetype:docx" To iSuccess
ERROR: invalid unaryExpression
Get ComUpdateString Of hoJson "requests[0].query.queryString" To iSuccess
End_Procedure
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
-d '{
"requests": [
{
"entityTypes": [
"driveItem"
],
"query": {
"queryString": "contoso"
//"queryString": "contoso filetype:pdf OR filetype:docx"
//"queryString": "contoso path:\"https://contoso.sharepoint.com/sites/Team Site/Documents/\\""
}
}
]
}'
https://graph.microsoft.com/beta/search/query
Postman Collection Item JSON
{
"name": "Search files and folders",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"requests\": [\n {\n \"entityTypes\": [\n \"driveItem\"\n ],\n \"query\": {\n \"queryString\": \"contoso\"\n //\"queryString\": \"contoso filetype:pdf OR filetype:docx\"\n //\"queryString\": \"contoso path:\\\"https://contoso.sharepoint.com/sites/Team Site/Documents/\\\\\"\" \n }\n }\n ]\n}"
},
"url": {
"raw": "https://graph.microsoft.com/beta/search/query",
"protocol": "https",
"host": [
"graph",
"microsoft",
"com"
],
"path": [
"beta",
"search",
"query"
]
}
},
"response": [
]
}