Turkcell Push Server Api
Merhabalar,
http://pushserver.turkcell.com.tr üzerinden uygulamayı ekledim, Ios tarafındada bütün entegrasyonları yaptım ve site üzerinden push notification yolluyabiliyorum burada sıkıntı yok.
Fakat TurkcellPushServerKullanımı.Pdf dökümantasyonunda Restfull api kullanarak json ile push notification yolluyabileceğim metodlar mevcut.
Ben Token ile gönderme yapmak istiyorum ve bunun için dökümantasyonda yazan "/sendpushWToken/<appId>.<key>” methodunu kullanıyorum.
.Net ile HttpWebRequest kullanarak yandaki uriyi http://pushserver.turkcell.com.tr/PushServerLT/rest/sendpushWToken/{appId.key} ve bunun için gerekli olan datayı json ile gönderiyorum
POST /rest/sendpushWToken/{appId.key} HTTP/1.1
Content Type: application/json; charset=UTF-8
[code]
Ör1:
{
"destinations":["token1",”token2”],
"content":"deneme mesajı",
"scheduleddDate":"2012-11-02T15:37:58+0200"}
Ör2:
{
"destinations":["token"],
"content":"deneme mesajı",
"params":[{"key":"url","value":"http://turkcell.com.tr/push"}]
} [/code]
Fakat bu servisi tetiklediğimde her seferinde 404 Not Found hatası alıyorum.
Bunun için yardımcı olursanız sevinirim.