我可以从oneSignal网页面板发送推送通知,但不能通过我的APP发送。 错误是
细分或标记定位需要有效的App REST API密钥。
好的,我有我的REST API密钥,但我无法在整个文档中找到该怎么做...谢谢
答案 0 :(得分:1)
正如Specific Devices Usage中关于创建通知方法所述:
此方法在使用
REST API Key
时使用include_segments
或filters
时需要应用REST API key
。从不在客户端代码中使用
Authorization
,它仅适用于您的系统或服务器。将REST API密钥添加到HTTP“授权”标头作为基本身份验证。
您可能还想查看Keys & IDs中的讨论,了解有关密钥使用的说明。如上所述,
要使用密钥,请添加一个包含密钥
Basic REST_API_KEY
和值REST_API_KEY
的HTTP标头,您应将APP REST API key
替换为实际的Template.CompanyDetails.onRendered(function(){ $('.collapsible').collapsible(); }); Template.CompanyDetails.helpers({ isActive: function() { if(Session.get("event")){ return true; Session.set("event",undefined); } } }) Template.CompanyDetails.events({ 'click .collapsible-header' : function(event, template){ console.log(event.currentTarget); Session.set("event",event); } });
。所有应用的密钥也可以在“帐户”部分中一起使用。
希望有所帮助!