我已經通過GCM註冊了Android設備,設備的註冊ID是使用Windows Azure註冊的,它爲該設備提供了另一個唯一的ID。現在我的疑問是,如何通過由windows azure給出的註冊ID(而不是通過GCM註冊ID)僅通知一個設備?我被介紹了以下鏈接。 http://msdn.microsoft.com/en-us/library/windowsazure/dn223273.aspx如何通過Windows Azure通過GCM爲特定的Android設備發送通知?
URL在該鏈接中指定如下。在這裏,我知道的命名空間,通知中心和消息,但在這裏我必須給由Windows Azure的指定設備是唯一的註冊ID發送通知給該設備
https://{namespace}.servicebus.windows.net/{NotificationHub}/messages/?api-version=2013-08
我用下面的代碼在Java
String strAzureURL = "https://namespaceName.servicebus.windows.net/hubName/testMessage";
String strAzureRegistrationId = "Tag1";
String strSharedAccessSignature = "MySharedAccessSignature";
String strSharedAccessName = "MySharedAccessName";
String strAuthorizationToken = URLDecoder.decode(strSharedAccessName+":"+strSharedAccessSignature,"UTF-8");
String strAuthWrapFormat = "WRAP access_token=\""+strAuthorizationToken+"\"";
String info = null;
HttpClient client = new HttpClient();
try {
GetMethod method = new GetMethod(strAzureURL);
method.setRequestHeader("Authorization", strAuthWrapFormat);
method.setRequestHeader("ServiceBusNotification-Tags", strAzureRegistrationId);
method.setRequestHeader("ServiceBusNotification-Format", "gcm");
method.setRequestHeader("Audience","https://namespaceName.servicebus.windows.net");
client.executeMethod(method);
info = method.getResponseBodyAsString();
System.out.println("Response "+info);
} catch (UnknownHostException e1) {
e1.printStackTrace();
throw e1;
}
現在我收到以下錯誤。
Response <Error><Code>401</Code>
<Detail>MissingAudience: The provided token does not specify the 'Audience'..TrackingId:75c1d492-3ddf-4d88-84b7-1c2f07d9623b_G5,TimeStamp:1/8/2014 9:57:39 AM</Detail>
</Error>
感謝您的幫助!
非常感謝你.Link有用於C#應用程序的服務器代碼。但我想從Java應用程序發送特定設備的通知。怎麼做?我的疑問是在Java的服務器端代碼。 – Sakthimuthiah
Notification Hub沒有Java方面的SDK,因此您必須使用Java調用通知集線器的REST API。根據您提供的鏈接,向端點進行POST並在ServiceBusNotification-Tags中發送要交付的設備的註冊ID。 – Chris
我曾經使用REST調用,但我不知道在Windows Azure URL中傳遞特定註冊ID的位置。你能檢查更新的問題嗎? – Sakthimuthiah