WebOSおよびChromeデスクトップWebアプリとして実行されるCampfireクライアントを構築しています。私は次のコードを持っています:
logIn: function(){
this.apiToken = this.$.loginScreen.$.apiToken.getValue();
this.subdomain = this.$.loginScreen.$.subdomain.getValue();
this.fullURL = 'https://' + this.subdomain + '.campfirenow.com/';
this.$.roomService.url = this.fullURL + 'rooms.json';
var response = this.$.roomService.send({'Authorization': "Bearer " + this.apiToken, 'Access-Control-Allow-Origin': this.subdomain + '.campfirenow.com'});
'roomService'は次のようなものです。
{name: "roomService", kind: "enyo.WebService", url: null, onResponse: "successfulAlert", onError: "someFailure"}
そして、Chromiumでは、次のXMLHttpRequestエラーが発生し続けます。
Origin null is not allowed by Access-Control-Allow-Origin.
何か案は?