I installed openid logging in the system for mysite and the famous disqus comment system .
How can I integrate both of these, i.e. receive registered user information in the disqus comment system, not allowing users to enter their data twice on the same site, and also use the simplification of logging in the task.
Is there an api for disqus so that I can automatically authorize user information?
Something like django_template:
{%if requet.user.is_active %}
var disqus_email = {{ user.email }};
var disqus_name = {{ user.username }};
var disqus_openid = {{ user.openid }};
{% endif %}
There is one nice entry for this: Disqus and getting a registered user , but looking at the answer, I decided to start a new question on my problem.
source
share