Curl如何在Visual Studio C的FireStore中使用补丁动词来更新字段

时间:2019-06-06 17:08:34

标签: c rest curl google-cloud-firestore

我希望在Visual Studio环境中使用补丁方法在Firestore上更新Field。

我使用了Api Explorer。有效。但我不知道在Visual Studio中使用它

匹配https://firestore.googleapis.com/v1beta1/projects/firesotreexample/databases/(default)/documents/products/label?updateMask.fieldPaths=name&key= {YOUR_API_KEY}

{   
    "fields": {
        "name": {  "stringValue": "sunchip"}
    }
}


//visual studio curl code
char buf[1000];
sprintf(buf, "curl --request -H \"Content - Type: application / json\" -d PATCH https://firestore.googleapis.com/v1beta1/projects/firesotreexample/databases/(default)/documents/products/label?updateMask.fieldPaths=name&key=AIzaSyAM9lbNtk8_UxU5jVrUIR_KMmVuC1tmA7c {\"fields\": {\"name\": {\"stringValue\": \"pepero\" }   }}"); 
  

cmd上的错误消息
  curl:(3)端口号以''结尾         

502。那?一个错误。         

服务器遇到临时错误,无法完成您的请求。

请在30秒内重试。那???我们所知道的。

并且api键未读

错误消息:密钥不是批处理文件

0 个答案:

没有答案