how to access Facebook graph api in django

2018-11-19 Thread Tushar Nadkar
i want to access my users email , address , phone number, pincode by face book graph api -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...

Re: Looking for a Django Co-Founder.

2018-11-19 Thread Idowu Tunde
Helo you can do public found raising In term of ICO which help to get more fund from the puplic On Sunday, November 18, 2018, Zack Amaral wrote: > What time are you available today? > > On Sun, Nov 18, 2018 at 12:03 PM Erol DEMİRHAN > wrote: > >> Hi Zack, >> >> I'm interested in setting up a vi

Re: how to access Facebook graph api in django

2018-11-19 Thread Joel Mathew
What's the problem you're facing? Where's your code? Sincerely yours, Joel G Mathew On Mon, 19 Nov 2018 at 19:04, Tushar Nadkar wrote: > i want to access my users email , address , phone number, pincode by face > book graph api > > -- > You received this message because you are subscribed to

Re: Django jobs

2018-11-19 Thread Christian Ledermann
`Test Driven Development with Python` (Harry Percival) covers web development with Django On Thu, 15 Nov 2018 at 06:55, Ryan Gedwill wrote: > Yeah, it’s hard to just learn the pythonic way of doing things. It’s a mix > of functional and OOP practice with a bunch of built in stuff that you > woul

RE: Fascinating Problem

2018-11-19 Thread Matthew Pava
Okay, I’ve managed to deduce that I’m able to get an email when Debug is True. When Debug is False, I do not get the email. From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On Behalf Of Ryan Nowakowski Sent: Sunday, November 18, 2018 9:21 AM To: django-users@googlegrou

RE: Fascinating Problem

2018-11-19 Thread Matthew Pava
I have resolved the issue. I have a custom 500 view that just renders a template. The render call never specified that status code. Amazingly, it worked in the past. I have specified the status code in the function, and now the emails are coming through. So previously, I had this: def my_50

Send E-mail to User When Account is Activated though Django Admin Application

2018-11-19 Thread Asad Habib
Is there a way to send an e-mail to a user when their account is activated through the Django admin application? I can do it independently of the Django admin application but I want the admin to be signed in before they activate a user. Is there a way to achieve this without customizing the Dja

Re: Send E-mail to User When Account is Activated though Django Admin Application

2018-11-19 Thread ljh . holmes
I've done this recently by importing smtplib into my views.py file, and made executing a mail send a result of a view. I didn't realize at the time, but there is Django specific tools for this as well. https://docs.djangoproject.com/en/2.1/topics/email/ On Monday, November 19, 2018 at 2:44:3

Error Email Template

2018-11-19 Thread Matthew Pava
Hi Django users, I would like to change the color scheme of the error trace back in Django, even if it's emailed to me. Is there an easy way to do this? Thank you! -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group

Re: file URL missing project name

2018-11-19 Thread Akash Purandare
Hey Jeff Can you send me the URL of the file and the Location of the uploaded media file? Regards Akash Purandare On Sunday, November 18, 2018 at 8:48:04 PM UTC+5:30, Jeff Williams wrote: > > Hi All, > I'm new to django, so sorry if this is a newbie issue. > > I've managed to upload an ImageFie

Re: file URL missing project name

2018-11-19 Thread Jeff Williams
Hey Akash, Appreciate you still thinking about this. I've tried moving my Media folder to copy a working project (still no luck). Here is the file: http://127.0.0.1:8000/media/documents/dsBuffer_rQWWvO9.jpg This is the media folder: D:\DjangoStuff\familyrecipies\media\documents My current gues

Self hosted sentry server

2018-11-19 Thread Joel Mathew
I'm just wondering if any of you are running a self hosted sentry server for your django installation? Does it have all features of the commercial non hosted subscription? Sincerely yours, Joel G Mathew -- You received this message because you are subscribed to the Google Groups "Django users

Django REST, Djoser and LOGIN_REDIRECT_URL

2018-11-19 Thread Lunga Baliwe
Hello everyone. I am not an experienced Django dev, also I am new to Django REST and I'm working on a project that uses Django REST with Djoser. The requirement is that every-time a user logs-in, the user must be sent an sms for authentication(Two factor authentication). Is this possible with Dj