gpt4 book ai didi

c# - MS Form Recognizer API - 分析文档 - 结果 ID

转载 作者:行者123 更新时间:2023-12-03 03:23:31 26 4
gpt4 key购买 nike

我正在尝试使用 Link Here 中的 AZ 表单识别器 API我无法执行以下操作 -

  1. 在测试控制台中附加 PDF。我们怎样才能做到这一点?

  2. 我从 Postman 尝试了相同的 API,并附加了 PDF,以便继续,现在我希望结果有一些“结果 ID”,我可以在稍后调用 API - 分析结果时使用它。

文档here不指示应该从哪里收集结果 id。

最佳答案

这个API Link1即使您选择application/pdf,也不支持附加PDF文件,请参阅以下内容:-

For application/json urlSource: "string" for request body paramater is present:-

enter image description here

But for application/pdf there's no request body parameter present:-

enter image description here

因此,为了使用上述链接分析 PDF 发票,请使用 application/json 并输入您的发票 github 链接,调用将会成功,您还将在输出中收到结果 ID,请参阅下文:-

API LINK2 of Analyze Document:-

由于我的表单识别器资源位于澳大利亚,因此我选择澳大利亚作为此 API Link3 中的一个区域。并输入如下参数:-

enter image description here

输出:-

enter image description here

通话:-

    Host 
Name- australiaeast.api.cognitive.microsoft.com

Query paramaters

modelId prebuilt invoice

Headers

Content-Type application/json
Ocp-Apim-subscription-Key <your API key>

Request body

{
"urlSource": "https://raw.githubusercontent.com/Azure-Samples/cognitive-services-REST-api-samples/master/curl/form-recognizer/sample-invoice.pdf"
}

HTTP 请求:-

POST https://australiaeast.api.cognitive.microsoft.com/formrecognizer/documentModels/prebuilt-invoice:analyze?api-version=2022-08-31 HTTP/1.1
Host: australiaeast.api.cognitive.microsoft.com
Content-Type: application/json
Ocp-Apim-Subscription-Key: ••••••••••••••••••••••••••••••••

{
"urlSource": "https://raw.githubusercontent.com/Azure-Samples/cognitive-services-REST-api-samples/master/curl/form-recognizer/sample-invoice.pdf"
}

回应:-

Operation-Location: https://australiaeast.api.cognitive.microsoft.com/formrecognizer/documentModels/prebuilt-invoice/analyzeResults/3305e6d3-2207-4727-8ffa-b04bb536c344?api-version=2022-08-31
x-envoy-upstream-service-time: 455
apim-request-id: 3305e6d3-2207-4727-8ffa-b04bb536c344
Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
x-content-type-options: nosniff
x-ms-region: Australia East
Date: Wed, 17 May 2023 05:50:28 GMT
Content-Length: 0

在上述响应中:- 3305e6d3-2207-4727-8ffa-b04bb536c344 是此 Rest API 中给出的结果 ID

现在您可以从此 link 调用 GetAnalyze Result API .

您可以将 PDF 文件添加到 postman 请求正文表单数据中,并将其命名为 API请参阅以下内容:-

enter image description here

enter image description here

POST https://australiaeast.api.cognitive.microsoft.com/formrecognizer/v2.0/prebuilt/receipt/analyze

Content-Type:application/pdf
Ocp-Apim-Subscription-Key:6e3xxxxxxxxxx

Body
form-data
Source <file>

关于c# - MS Form Recognizer API - 分析文档 - 结果 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/76230309/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com