Luis Beltran
Luis Beltran

Reputation: 1704

Submission failed - 5.7 Apps and add-ins must be secured with a valid and trusted SSL certificate (HTTPS)

I submitted an App in the Office365 Store but it got rejected. The requirement to fix is 5.7 Apps and add-ins must be secured with a valid and trusted SSL certificate (HTTPS). Your add-in and all its content must be SSL secured.

problem

Any information regarding how to fix this will be really helpful. Thank you!

Upvotes: 1

Views: 64

Answers (1)

Michael Saunders
Michael Saunders

Reputation: 2668

It means that you've included non-SSL resources in your add-in.

One way to identify the problem(s) is to search all your code (html and JS, of course) for occurrences of "http". Make sure that every one of them is using "https" and not "http".

-Michael (program manager on the add-ins team)

Upvotes: 2

Related Questions