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
Hi Stefan,
This is a great tool! but one thing is missing in it....
When I share on a mobile device: instead of opening throw the "URL schemes" (the native app that installed) it opens a web browser ...
For instance, it opens : https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fsimplesharingbuttons.com%2F
instead of: fb://...........?u=http%3A%2F%2Fsimplesharingbuttons.com%2F
Is there a solution for that?
The text was updated successfully, but these errors were encountered:
@danielt69 Interesting question!
Hmm, I just read through these:
I am going to leave this issue open for now, while I'm trying to look into this some more. Thanks for the suggestion!
Sorry, something went wrong.
Hey @fourtonfish, I found a little workaround for this problem if you want to implement it in your generator:
<a class='btn btn-default' href="https://www.facebook.com/sharer/sharer.php?u=http://www.freebets.co.uk" data-mobilesrc='fb://page/604525276265121'>Smart link</a> <script> $(document).ready(function(){ $('a.btn').click(function(e){ e.preventDefault(); var link = $(e.target).attr('href'); window.setTimeout(function(){ window.open(link, "_blank", "toolbar=yes,scrollbars=yes,resizable=yes,top=80,left=15,width=555,height=565"); }, 50); window.location.href = $(e.target).data().mobilesrc; }) }) </script>
You can see here all the links for mobile apps: http://wiki.akosma.com/IPhone_URL_Schemes#Facebook
No branches or pull requests
Hi Stefan,
This is a great tool! but one thing is missing in it....
When I share on a mobile device: instead of opening throw the "URL schemes" (the native app that installed) it opens a web browser ...
For instance, it opens :
https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fsimplesharingbuttons.com%2F
instead of:
fb://...........?u=http%3A%2F%2Fsimplesharingbuttons.com%2F
Is there a solution for that?
The text was updated successfully, but these errors were encountered: