标记推送通知上的Unity android oneSignal错误

时间:2016-11-25 20:26:39

标签: unity3d google-cloud-messaging onesignal

我可以从oneSignal网页面板发送推送通知,但不能通过我的APP发送。 错误是

  

细分或标记定位需要有效的App REST API密钥。

好的,我有我的REST API密钥,但我无法在整个文档中找到该怎么做...谢谢

1 个答案:

答案 0 :(得分:1)

正如Specific Devices Usage中关于创建通知方法所述:

  

此方法在使用REST API Key时使用include_segmentsfilters时需要应用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); } });

     

Keys & IDs

     

所有应用的密钥也可以在“帐户”部分中一起使用。

希望有所帮助!