Reputation: 1704
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.
Any information regarding how to fix this will be really helpful. Thank you!
Upvotes: 1
Views: 64
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