We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The default social share for facebook currently doesn't work.
To reproduce, visit any example flexdashboard online (such as this one) and attempt to share via Facebook.
Digging into the HTML reveals that the request sent to facebook is:
https://www.facebook.com/sharer/sharer.php?s=100&p[url]="+encodeURIComponent(location.href)
Changing it to the following solves this issue:
https://www.facebook.com/sharer/sharer.php?u="+encodeURIComponent(location.href)
The text was updated successfully, but these errors were encountered:
Thanks! It's a bit hard to find in the Facebook developer docs, but this page seems to agree with you!
Sorry, something went wrong.
Add NEWS item for #234
d6f73d0
Fixed in e239f23, thanks for reporting this!
No branches or pull requests
The default social share for facebook currently doesn't work.
To reproduce, visit any example flexdashboard online (such as this one) and attempt to share via Facebook.
Digging into the HTML reveals that the request sent to facebook is:
Changing it to the following solves this issue:
The text was updated successfully, but these errors were encountered: