Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 openarchives 中验证了我的 oai 代码。很多错误。大部分已清除。但仍然有 2 个错误。它显示错误,例如“用于识别的 FAIL POST 测试 1 不成功,收到了 OAI 错误响应”。任何人都知道是什么类型的错误this.附加错误图片 谢谢
看起来您的 OAI 服务器不接受这些动词的 POST 请求。OAI 服务器应该以相同的方式处理 POST 和 GET 请求。
例如,这两个请求给出相同的结果:
curl -d "verb=Identify" http://export.arxiv.org/oai2 curl http://export.arxiv.org/oai2?verb=Identify
您的服务器应该是相同的。