Microsoft push notification service 403 - Forbidden: Access is denied
Asked Answered
O

1

8

I am trying to send secure windows push notifications from my php server with valid ssl certificate and I got this error:

403 - Forbidden: Access is denied.

You do not have permission to view this directory or page using the credentials that you supplied.

I uploaded certificate to dev.windowsphone.com and HttpNotificationChannel where serviceName is my Common Name from certificate. I got https uri from HttpNotificationChannel but when I call it from server I got error. Does anyone know what the problem is?

When I call unsecure request from server everything is ok.

Overpay answered 4/10, 2013 at 13:35 Comment(2)
I am not too sure if this helps but is there a HttpsNotificationChannel ? I am just thinking outside the box that perhaps it is like a web server trying to accept https traffic through a http port - there will be issuesDetwiler
that looks like directory permissions.Lagan
E
-1

You will need to allow access in the directory in Apache. Assuming you have super user access to the server, and I don't know how your server is set up, but you will need to set your directory like this:

<Directory "C:/Your/Directory/With/No/Trailing/Slash">
   Allow from all
   Require all granted
</Directory>
Eupepsia answered 17/5, 2015 at 18:52 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.