Sharing a topic using FB messenger works fine. I think only custom home page causes such problem. I've not tried categories page yet.
hotteshen
Posts
-
Embedding my NodeBB forum link on Facebook messenger shows error message. -
Embedding my NodeBB forum link on Facebook messenger shows error message.My site is built with NodeBB v1.11. And I customized the home page using
nodebb-plugin-custom-pages
.
I was going to send the link of my site to friends via Facebook messenger app on Android.But the FB messenger app shows error message in message box:
Your browser does not seem to suppoert JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
It worked well on the other messenger apps like LinkedIn or Skype.
Why this happened? Who's fault is that, NodeBB or FB messenger? -
Proxy the path under NodeBB root to another one.I modified html link on my custom home page.
from<a href="/app/">App</a>
to
<a href="javascript:window.location.href=window.location.href + 'app/'">App</a>
- Pros: no change to NodeBB source, so that I can update NodeBB as new release comes.
- Cons: The link URL is ugly and can not be copied for quote.
Ref: Difference between window.location.href=window.location.href and window.location.reload()
-
Proxy the path under NodeBB root to another one.Thanks to replies from julian and PitaJ, I solved this issue.
-
Can I upload an HTML file and use it as custom home page?Thank you. I'll try to make my own plugin for it.
-
Proxy the path under NodeBB root to another one.http://example.com is my nodebb site URL. I configured a proxy to pass http://example.com/app to my other Python server. But when clicking http://example.com/app in a post of NodeBB, then a page opens, which says the URL not found. Refreshing it again opens the real page http://example.com/app (my Python app).
I use Apache proxy server. I hope my Python app opens by the first click on the link.How can I fix this?
-
Session sharing between NodeBB and Python appI now use
/api/me
to get auth info. -
Session sharing between NodeBB and Python appHi, everybody.
I want to use NodeBB as a central app, and use its session info from a Python(bottle) app.
I've searched and got hundreds of results about session sharing on this forum. But as I'm novice to NodeBB and networking, it's hard to figure out how to implement it.
How can I do it?
Cannodebb-plugin-session-sharing
be used for this purpose? -
Can I upload an HTML file and use it as custom home page?I'm customizing home page of my NodeBB-based website. I now use
nodebb-plugin-custom-pages
plugin. But as my home page goes bigger, it is more difficult to customize.Can I upload an HTML file ( + some js/css files ) and use it as my custom home page?