如何使tezos节点设置CORS标头
1 个回答
- 投票数
您需要使用以下选项启动节点:--cors-header='content-type' --cors-origin='*'
.
使用这些选项启动节点后,响应头将使JavaScript应用程序可以对Tezos节点进行RPC调用.
You need to start the node with these options: --cors-header='content-type' --cors-origin='*'
.
Once you’ve started the node with these options the response headers should allow a JavaScript application to make RPC calls to a Tezos node.
我正在本地运行测试沙箱.有谁知道让我的沙箱RPC服务添加
Access-Control-Allow-Origin: *
标头的简单方法,以便在本地测试时可以避免CORS错误?rpc.tzbeta.net 似乎添加了标头,因此我可以从我的标头访问它网络应用程序还可以,但是它当前未运行最新的投标代码,因此我无法将其用于测试.
一个测试选项是代理,但是如果有办法告诉RPC服务为我做这件事,那是理想的.