我遵循Apple的此指南创建一个jwt令牌,用于他们的Apple Maps JS Kit:https://developer.apple.com/documentation/mapkitjs/creating_and_using_tokens_with_mapkit_js
它有效,但我如何设置多个原点?我不希望它允许localhost
、production-url
和production-backend-url
。但看起来它只接受一个字符串。
目前我正在做:
origin:
process.env.NODE_ENV === "development"
? "http://localhost:3000"
: "https://production-url"
但它怎么能允许第三个域呢?
定义多个原点的语法如下:
origin: "http://localhost:3000,https://first.domain,https://second.domain"
这是通过反复试验得出的。在我能找到的任何地方都没有记录。