Home > Mobile >  How to redirect to a view after a button click?
How to redirect to a view after a button click?

Time:07-27

I have a some social sharing links in my HTML template. I can share to Facebook, LinkedIn, Twitter and Whatsapp, but I want to redirect to a URL (views) in Django that would give 100 points to the user that is sharing the post using the social share link.

How can I asynchronously redirect to that view in the background?

I have tried this, but it doesn't seem to work

<div  data-href="{{url_string}}" data-layout="button_count" onclick="window.open({% url 'core:social-share' %},'_blank'); return false;"></div>

These are my shareable links#

<a href="https://www.linkedin.com/shareArticle?mini=true&amp;url=https://youtube.com/user/desphixs/&amp;title=WelcomeTo{{company.name}}&amp;summary={{company.name}}&amp;source=mywebsite" target="_blank" rel="noopener">
  <small>Share on Linkedin</small>
</a>

<a  href="whatsapp://send?text={{content_string}}{{url_string}}" data-action="share/whatsapp/share" target="_blank" rel="noopener">
  <small>Share on Whatsapp</small>
</a>

CodePudding user response:

I do not know whether there is a way to reliably check whether a user actually shared content or just clicked your link and did nothing.

But you could send a POST to a Django endpoint which adds the 100 pts to user's points, which answers with an HTTP303 to redirect the user to another page.

A clientside solution would look the same:

  1. Send a POST to any endpoint
  2. location.href to redirect.
  • Related