Custom URL schemes for anonymous users
-
I’m currently developing an iOS app along with a WordPress site with the bbPress plugin.
I would like to allow any user to easily post links with custom schemes in the forum like :
myappname://badebidobudy/fdjlkqsfj
I saw that in bbPress an admin can indeed post a link and its href is not interpreted so it remains :
href=”myappname://badebidobudy/fdjlkqsfj”
and bbPress tells me why :
> Your account has the ability to post unrestricted HTML content.
But when an anonymous user wants to do this, the custom scheme is removed and the resulting a tag href is :
href=”//badebidobudy/fdjlkqsfj”
So my question is : how can I configure (or tweak) WordPress or bbPress to at least accept my url scheme or even recognize a raw link with a custom scheme ?
- You must be logged in to reply to this topic.