Re: django Facebook integration

2018-08-14 Thread ruban bharath
Thank you sir,but i have done it already ,is there any clear procedure to 
integrate with Facebook with django


On Tuesday, August 14, 2018 at 12:01:59 PM UTC+5:30, Mikhailo Keda wrote:
>
> You need to add your redirect url to fb app, go to your fb app logging 
> settings and check fb Valid OAuth Redirect URIs
>
> Mike
>

-- 
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...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/74048b8d-5bd7-49ab-b06d-b00c2062af68%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: django Facebook integration

2018-08-14 Thread Mikhailo Keda
You need to add your redirect url to fb app, go to your fb app logging 
settings and check fb Valid OAuth Redirect URIs

Mike

-- 
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...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/c708d4e1-7330-473b-91a5-d9fe031caca5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


django Facebook integration

2018-08-13 Thread ruban bharath


When i try to login with Facebook using django i got a error like


*url blocked: this redirect failed because the redirect uri is not 
white-listed in the app's client oauth settings. make sure that the client 
and web oauth logins are on and add all your app domains as valid oauth 
redirect uris.*


how to solve this error in django

-- 
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...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/8f6c553e-12a9-4a19-a646-d6457264d4eb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Django Facebook APP

2018-01-01 Thread Karol Bujaček



On 01/01/2018 12:20 PM, nikeshpydev wrote:

Hello Dears,

I am a newbie in Django .I wish to develop a Django application that 
can post an app result to Facebook. I want to get the likes and shares 
that the post get. I am developing the app in Django Version 1.11, 
using Python 3.4 and database MySQL(mysqlclient). Please help me.


Thanks


Hello,

Take a look at the https://github.com/tschellenbach/Django-facebook and 
read about Facebook Graph API 
https://developers.facebook.com/docs/graph-api .


Hint: you will probably need some Facebook app with app ID, app secret. 
You can create that at the page https://developers.facebook.com/ .



Karol

--
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...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/23cd8285-3d77-737d-15bd-e22552e8c465%40fossilgroup.net.
For more options, visit https://groups.google.com/d/optout.


Django Facebook APP

2018-01-01 Thread nikeshpydev
Hello Dears,

I am a newbie in Django .I wish to develop a Django application that can 
post an app result to Facebook. I want to get the likes and shares that the 
post get. I am developing the app in Django Version 1.11, using Python 3.4 
and database MySQL(mysqlclient). Please help me. 

Thanks 

-- 
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...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/3d38d284-5bf9-4801-92c9-791808e31222%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: django-facebook

2013-12-20 Thread Duncan Bates
ended up doing easy_install from the command line in both the python 
environment and pyton/Script base dir.

Installed 
c:\ttribe\trunk\tribe\workpc27\lib\site-packages\pillow-2.2.2-py2.7-win32.egg
Processing dependencies for Pillow
Finished processing dependencies for Pillow

C:\ttribe\trunk\tribe\workpc27\Scripts>

running my dajngo app from Visual studio, still complains about Pillow/PIL

  File 
"C:\Temp\DFB\DFB\env\lib\site-packages\django\core\management\validation.
py", line 113, in get_validation_errors
from django.utils.image import Image
  File "C:\Temp\DFB\DFB\env\lib\site-packages\django\utils\image.py", line 
154,
in 
Image, _imaging, ImageFile = _detect_image_library()
  File "C:\Temp\DFB\DFB\env\lib\site-packages\django\utils\image.py", line 
108,
in _detect_image_library
_("Neither Pillow nor PIL could be imported: %s") % err
ImproperlyConfigured: Neither Pillow nor PIL could be imported: No module 
named
Image
Press any key to continue . . .























kl. 14:05:08 UTC+1 tirsdag 17. desember 2013 skrev Duncan Bates følgende:
>
> Testing django for my next web app, but encountering image library 
> problems when I've added the django-facebook to my project; 
> ImproperlyConfigured: Neither Pillow nor PIL could be imported: No module 
> named Image
>
> Using python v2.7 win64 / Django 1.6, and Microsoft Python Tools for 
> Visual Studio v2.0.11016.00
>
> Tried to install PIL and Pillow through pip, both fails.
>
> Ideas?
>

-- 
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...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/c85a356e-f88b-474c-9383-e32a836416d7%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: django-facebook

2013-12-19 Thread Hajime Branko Yamasaki Vukelic
On Thu, Dec 19, 2013 at 10:26 AM, Michał Pasternak  wrote:
> How about a log with the failure from the installation and some basic
> information on your platform and operating system?

Information about the platform is listed in the original post:

> Using python v2.7 win64 / Django 1.6, and Microsoft Python Tools for Visual 
> Studio v2.0.11016.00

AFAIK, This is a known issue on Windows. Pillow ships binary package
for Windows which is not installed by pip. Installing using
easy_install should do the trick for the time being. I believe a fix
is in the pipeline, but can't find the details. It's somewhere in the
pip's issue tracker, I think.

Alternatively, PIL can also be installed using .exe file[1], but it's
deprecated by Django project, so I think installing pillow is better.

[1] http://www.pythonware.com/products/pil/


-- 
Branko
bra...@brankovukelic.com

/dev/blog: brankovukelic.com

-- 
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...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPER3A0dzWPNYu7tKEF-qoRLe1iH_AZR-ZCdvY_movLQJr_vSg%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: django-facebook

2013-12-19 Thread Michał Pasternak
How about a log with the failure from the installation and some basic 
information on your platform and operating system? 

W dniu wtorek, 17 grudnia 2013 14:05:08 UTC+1 użytkownik Duncan Bates 
napisał:
>
> Testing django for my next web app, but encountering image library 
> problems when I've added the django-facebook to my project; 
> ImproperlyConfigured: Neither Pillow nor PIL could be imported: No module 
> named Image
>
> Using python v2.7 win64 / Django 1.6, and Microsoft Python Tools for 
> Visual Studio v2.0.11016.00
>
> Tried to install PIL and Pillow through pip, both fails.
>
> Ideas?
>

-- 
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...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/586e71c0-e796-4824-8eb0-24c4acc73218%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: django-facebook

2013-12-17 Thread Mike Dewhirst

On 18/12/2013 12:05am, Duncan Bates wrote:

Testing django for my next web app, but encountering image library
problems when I've added the django-facebook to my project;
ImproperlyConfigured: Neither Pillow nor PIL could be imported: No
module named Image


I installed pre-compiled Pillow from ...

   http://www.lfd.uci.edu/~gohlke/pythonlibs/

... which works well for me.



Using python v2.7 win64 / Django 1.6, and Microsoft Python Tools for
Visual Studio v2.0.11016.00

Tried to install PIL and Pillow through pip, both fails.

Ideas?

--
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...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-users/be25e45b-d428-4e37-85f1-3129d6d0551a%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


--
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...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/52B0D2CA.7000109%40dewhirst.com.au.
For more options, visit https://groups.google.com/groups/opt_out.


Re: django-facebook

2013-12-17 Thread Hajime Branko Yamasaki Vukelic

On Tuesday, December 17, 2013 2:05:08 PM UTC+1, Duncan Bates wrote:
>
> Testing django for my next web app, but encountering image library 
> problems when I've added the django-facebook to my project; 
> ImproperlyConfigured: Neither Pillow nor PIL could be imported: No module 
> named Image
>
> Using python v2.7 win64 / Django 1.6, and Microsoft Python Tools for 
> Visual Studio v2.0.11016.00
>
> Tried to install PIL and Pillow through pip, both fails.
>
>
Duncan, 

Try installing pillow using easy_install instead of pip. That worked for me.

HTH

-- 
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...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/eceb56e7-e34e-46c8-9586-430cd0c15749%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: django-facebook

2013-12-17 Thread Vibhu Rishi
I installed Pillow a few days back - it went fine.

$pip install Pillow

You need to make sure that you have libraries for png/jpg available. I am
not sure if that has to be a pip or a sudo apt-get ( i went the apt-get way
)

V.



On Tue, Dec 17, 2013 at 6:35 PM, Duncan Bates <duncan.i.ba...@gmail.com>wrote:

> Testing django for my next web app, but encountering image library
> problems when I've added the django-facebook to my project;
> ImproperlyConfigured: Neither Pillow nor PIL could be imported: No module
> named Image
>
> Using python v2.7 win64 / Django 1.6, and Microsoft Python Tools for
> Visual Studio v2.0.11016.00
>
> Tried to install PIL and Pillow through pip, both fails.
>
> Ideas?
>
> --
> 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...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/be25e45b-d428-4e37-85f1-3129d6d0551a%40googlegroups.com
> .
> For more options, visit https://groups.google.com/groups/opt_out.
>



-- 
Simplicity is the ultimate sophistication. - Leonardo da Vinci
Life is really simple, but we insist on making it complicated. - Confucius

-- 
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...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPiONwncnujsWOVfXjgiGVaL3L1LJqMiZw0XOuKWaUKL4JAq_A%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.


django-facebook

2013-12-17 Thread Duncan Bates
Testing django for my next web app, but encountering image library problems 
when I've added the django-facebook to my project; ImproperlyConfigured: 
Neither Pillow nor PIL could be imported: No module named Image

Using python v2.7 win64 / Django 1.6, and Microsoft Python Tools for Visual 
Studio v2.0.11016.00

Tried to install PIL and Pillow through pip, both fails.

Ideas?

-- 
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...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/be25e45b-d428-4e37-85f1-3129d6d0551a%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


error in installing django-facebook

2013-03-11 Thread Avnesh Shakya
i m trying to install django-facebook but it's showing error, i unable to
catch it please help me.
error -
C:\django-facebook-5.0.2prealpha>python setup.py install
No handlers could be found for logger "django_facebook"
Traceback (most recent call last):
  File "setup.py", line 11, in 
from distutils.core import setup, find_packages
ImportError: cannot import name find_packages


thanks in advance

-- 
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...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




django facebook mobile app integration

2013-01-19 Thread Hand Green
I would like to develop an Android app and leverage Facebook SDK for 
Android for user authentication instead of requiring users to register 
another account in my App. No browser access to Django is needed.
After users log in Facebook successfully, the SDK will return a token, I 
would like to send the token to Django and verify whether it is valid or 
not.
(In other words, log into Django via the Facebook token.)
The communication between my App and Django is in RESTful way.
 
I have read http://www.djangobook.com/en/2.0/chapter14.html.
It seems django.contrib.auth leverages the built-in 
authentication mechanism. 
I also have found https://gist.github.com/3972601. 
However, I do not know how to integrate them into my Django so that users 
can log in my App via Facebook and access the resources in Django.
 
Any ideas?
 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/u53O7dGDmhYJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



What kind of authorization I should use for my Django facebook app

2012-06-30 Thread surya
I am building a facebook application using Django where I am using Google 
Data API (Blogger API) to read website's content.

So, what kind of authorization I should use in Google Data API to read the 
website.. To be specific, what kind of OAuth authorization I should use and 
how? 
(I want my users to use my app without any login credentials)..

Can anyone help me on it?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/dwjcrkvB5xIJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: How to use django-facebook-graph

2012-06-13 Thread Simon Schmid | FEINHEIT
Hi Ada

Facebook Development is kind of complicated. You have to be familiar
first with the Facebook Graph API [1]. Our repository
django-facebook-graph mainly helps you to add facebook functionality
to your django app, if you understood how facebook development in
general works. Try to go through the Installation and Getting Started
chapters in the django-facebook-graph [2] documentation.

If I've got you right, you want your users to be able to connect with
Facebook and you'll try to look up their personal information stored
on the Facebook servers. For this, you only need to add 'facebook' and
'facebook.modules.profile.user' to your INSTALLED_APPS, add the
Middleware, add the Authentication Backend and request the user on the
client side for the 'user_hometown' permissions. Django-facebook-graph
automatically tries to get the informations for the user.

Have fun with django-facebook-graph

Simon

[1] https://developers.facebook.com/docs/
[2] http://django-facebook-graph.readthedocs.org/en/structured/


2012/6/13 Ada Pineda <elizethpin...@gmail.com>
>
> Hi
>
> I'm pretty new with django and I'm trying to connect an app that I've
> created (and it's hosted on Heroku) to Facebook. I created an app in
> Facebook and indicated that I wanted to use python and Heroku. I have
> a simple home page that reads some data and store it into a
> postgresql database. Now, I need to get some facebook user's
> information, like Country and City. I was looking for a tool and I
> found django-facebook-graph, but I really don't know how to use it.
>
> I found a post ( 
> https://groups.google.com/group/django-users/browse_thread/thread/7f21832664efa73e
> ) and that's why I'm asking you for some help.
>
> Regards.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



How to use django-facebook-graph

2012-06-12 Thread Ada Pineda
Hi

I'm pretty new with django and I'm trying to connect an app that I've
created (and it's hosted on Heroku) to Facebook. I created an app in
Facebook and indicated that I wanted to use python and Heroku. I have
a simple home page that reads some data and store it into a
postgresql database. Now, I need to get some facebook user's
information, like Country and City. I was looking for a tool and I
found django-facebook-graph, but I really don't know how to use it.

I found a post ( 
https://groups.google.com/group/django-users/browse_thread/thread/7f21832664efa73e
) and that's why I'm asking you for some help.

Regards.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: django facebook api

2012-03-12 Thread Andre Terra
Suresh,

If you want to get any answers, you must first learn how to make the
questions.


Please follow the guidelines in this wiki article before posting to the
mailing list:
https://code.djangoproject.com/wiki/UsingTheMailingList


Cheers,
AT


On Thu, Mar 8, 2012 at 9:24 AM, suresh dokania wrote:

> Hi,
>
> I got my login working. Redirect uri was d problem. I created a redirect
> uri stormy-sunset in facebook using django
>
> I followed this link http://djangosnippets.org/snippets/2065/
>
> but  the problem is here are my requirements
> When i press the login button  n enter my username n password , i need to
> be redirected to a particular template in my localhost
> but its nt working with local uri
>
> second only for the account i ve created my app , its logging. when i try
> using another username and password it says requested user name and
> password cannot be used by facebook at the moment
> i want to use the details of the user logged in to build  a social graph
> using django
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



django facebook api

2012-03-08 Thread suresh dokania
Hi,

I got my login working. Redirect uri was d problem. I created a redirect
uri stormy-sunset in facebook using django

I followed this link http://djangosnippets.org/snippets/2065/

but  the problem is here are my requirements
When i press the login button  n enter my username n password , i need to
be redirected to a particular template in my localhost
but its nt working with local uri

second only for the account i ve created my app , its logging. when i try
using another username and password it says requested user name and
password cannot be used by facebook at the moment
i want to use the details of the user logged in to build  a social graph
using django

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: django facebook api prob

2012-03-01 Thread dummyman dummyman
has anyone tried before and is it working ? please help me out if u have
got it working

On Fri, Mar 2, 2012 at 12:11 AM, yati sagade  wrote:

> I tried just now, and even I'm getting the same error. Perhaps you should
> ask this question on http://stackoverflow.com under the "facebook" tag -
> a team of FB engineers monitors this tag, and may offer more insight. Most
> probably, it's some bug/maintenance glitch.
>
> On Thu, Mar 1, 2012 at 9:01 PM, dummyman dummyman wrote:
>
>> Hi guys,
>>
>> Sorry for troubling you. I am not able to make out how to use facebook
>> social graph and other plugins in django. I am a newbie . I know the basics
>> of django and i went thru facebook api key s in developers.facebook.com. It 
>> always points out " an error occured . please try again" . Can u
>> please provide a link which provides a step by step guide as how to use
>> these apis in django and get the results .?
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To post to this group, send email to django-users@googlegroups.com.
>> To unsubscribe from this group, send email to
>> django-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/django-users?hl=en.
>>
>
>
>
> --
> Yati Sagade 
>
> (@yati_itay )
>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: django facebook api prob

2012-03-01 Thread yati sagade
I tried just now, and even I'm getting the same error. Perhaps you should
ask this question on http://stackoverflow.com under the "facebook" tag - a
team of FB engineers monitors this tag, and may offer more insight. Most
probably, it's some bug/maintenance glitch.

On Thu, Mar 1, 2012 at 9:01 PM, dummyman dummyman wrote:

> Hi guys,
>
> Sorry for troubling you. I am not able to make out how to use facebook
> social graph and other plugins in django. I am a newbie . I know the basics
> of django and i went thru facebook api key s in developers.facebook.com .
> It always points out " an error occured . please try again" . Can u please
> provide a link which provides a step by step guide as how to use these apis
> in django and get the results .?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>



-- 
Yati Sagade 

(@yati_itay )

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



django facebook api prob

2012-03-01 Thread dummyman dummyman
Hi guys,

Sorry for troubling you. I am not able to make out how to use facebook
social graph and other plugins in django. I am a newbie . I know the basics
of django and i went thru facebook api key s in developers.facebook.com .
It always points out " an error occured . please try again" . Can u please
provide a link which provides a step by step guide as how to use these apis
in django and get the results .?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: django-facebook-graph

2011-12-19 Thread Timothy Makobu
Thanks Simon.

On Mon, Dec 19, 2011 at 6:23 PM, Simon Schmid | FEINHEIT 
<s...@feinheit.ch>wrote:

> Hi Timothy
>
> As the founder of this facebook toolset, i can't give you an objective
> answer. but i can tell you something about the project:
>
> First of all, it is still under heavy development. i started over a
> year ago and just wanted to share my code and experience with facebook
> graph and django with others, so i decided to collect all my internal
> used codes for different projects and put it together to something
> like a "framework". the more facebook projects we did, we implemented
> more and more features. but still, it doesn't cover all aspects of the
> facebook graph api.
>
> That said, i think it is a good starting point, a lot of common use
> cases are already covered, like: decrypting the signed_request, login
> with facebook as registration/authentication backend, make wallposts,
> upload photos, etc.
>
> If you just want to use the features already implemented and
> documented, then i suggest that you use the master branch:
> https://github.com/feinheit/django-facebook-graph
>
> But if you want to help us work on the project in any way (what we
> would really appreciate!), then go to the structured branch:
> https://github.com/feinheit/django-facebook-graph/tree/structured
> The structured branch is a new approach to organize all these facebook
> functionality into modules, so that you only load the modules, which
> you need for your project. it's something like the aim for a version
> 1.0. but at this point, experimental, undocumented and not fully
> tested.
>
> So if you have any question, feel free to write, open issues on
> github, etc.
>
> Have fun with Facebook Development
>
> Simon
>
> On Dec 19, 12:32 pm, Timothy Makobu <makobu.mwambir...@gmail.com>
> wrote:
> > Hi All,
> >
> > Im looking to post to my facebook wall via django. Facebook have
> > discontinued the python-sdk.
> >
> > I then came across django-facebook-graphhttp://
> readthedocs.org/docs/django-facebook-graph/en/latest/index.html
> >
> > What's your opinion on it? Is there a better library?
> >
> > Thanks.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-users@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: django-facebook-graph

2011-12-19 Thread Simon Schmid | FEINHEIT
Hi Timothy

As the founder of this facebook toolset, i can't give you an objective
answer. but i can tell you something about the project:

First of all, it is still under heavy development. i started over a
year ago and just wanted to share my code and experience with facebook
graph and django with others, so i decided to collect all my internal
used codes for different projects and put it together to something
like a "framework". the more facebook projects we did, we implemented
more and more features. but still, it doesn't cover all aspects of the
facebook graph api.

That said, i think it is a good starting point, a lot of common use
cases are already covered, like: decrypting the signed_request, login
with facebook as registration/authentication backend, make wallposts,
upload photos, etc.

If you just want to use the features already implemented and
documented, then i suggest that you use the master branch:
https://github.com/feinheit/django-facebook-graph

But if you want to help us work on the project in any way (what we
would really appreciate!), then go to the structured branch:
https://github.com/feinheit/django-facebook-graph/tree/structured
The structured branch is a new approach to organize all these facebook
functionality into modules, so that you only load the modules, which
you need for your project. it's something like the aim for a version
1.0. but at this point, experimental, undocumented and not fully
tested.

So if you have any question, feel free to write, open issues on
github, etc.

Have fun with Facebook Development

Simon

On Dec 19, 12:32 pm, Timothy Makobu <makobu.mwambir...@gmail.com>
wrote:
> Hi All,
>
> Im looking to post to my facebook wall via django. Facebook have
> discontinued the python-sdk.
>
> I then came across 
> django-facebook-graphhttp://readthedocs.org/docs/django-facebook-graph/en/latest/index.html
>
> What's your opinion on it? Is there a better library?
>
> Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



django-facebook-graph

2011-12-19 Thread Timothy Makobu
Hi All,

Im looking to post to my facebook wall via django. Facebook have
discontinued the python-sdk.

I then came across django-facebook-graph
http://readthedocs.org/docs/django-facebook-graph/en/latest/index.html

What's your opinion on it? Is there a better library?

Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: django facebook authentication

2011-01-27 Thread CrabbyPete
Thanks I figured it out. I should just use request.path  I used
request.get_full_path() which returns the whole request including the ?
code=xxx which messed me up.

On Jan 26, 12:07 am, Matias Aguirre  wrote:
> Hi,
>
> Is your request.get_host() the same defined in Facebook app settings? (Web 
> site
> section if I can recall correctly), facebook doesn't accept 127.0.0.1 as
> redirect url and might not accept localhost too.
>
> Check social_auth/backends/facebook.py 
> onhttps://github.com/omab/django-social-auth
> for an example.
>
> Regards,
> Matías
>
> Excerpts fromCrabbyPete'smessage of Wed Jan 26 00:39:05 -0200 2011:
>
> > I am going nuts this should be simple but I keep getting a
> > verification error every time in my response in the following code. I
> > double checked my APP_ID and SECRET  I try the following code. I'm
> > using python2.5. Any help appreciated.
>
> > def login( request ):
>
> >     parms = { 'client_id': settings.FACEBOOK_APP_ID,
> >               'redirect_uri': 'http://' + request.get_host() +
> > request.get_full_path()
> >             }
>
> >     if 'code' in request.GET:
> >         parms['code'] = request.GET['code']
> >         parms['client_secret'] = settings.FACEBOOK_APP_SECRET
> >         url = 'https://graph.facebook.com/oauth/access_token?'+
> > urllib.urlencode(parms)
>
> >         response = urllib.urlopen(url).read()
> >         pdb.set_trace()
> >         response =cgi.parse_qs(response)
>
> >         if 'access_token' in response:
> >             access_token = response['access_token'][0]
> >             graph = GraphAPI( access_token )
> >             profile = graph.get_object("me")
> >             url = reverse('sites')
> >         url = reverse('sites')
>
> >     else:
> >         parms['scope'] = 'email,user_location'
> >         url = "https://graph.facebook.com/oauth/authorize?; +
> > urllib.urlencode(parms)
>
> >     return HttpResponseRedirect(url)
>
> --
> Matías Aguirre 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: django facebook authentication

2011-01-25 Thread Matias Aguirre
Hi,

Is your request.get_host() the same defined in Facebook app settings? (Web site
section if I can recall correctly), facebook doesn't accept 127.0.0.1 as
redirect url and might not accept localhost too.

Check social_auth/backends/facebook.py on 
https://github.com/omab/django-social-auth
for an example.

Regards,
Matías

Excerpts from CrabbyPete's message of Wed Jan 26 00:39:05 -0200 2011:
> I am going nuts this should be simple but I keep getting a
> verification error every time in my response in the following code. I
> double checked my APP_ID and SECRET  I try the following code. I'm
> using python2.5. Any help appreciated.
> 
> def login( request ):
> 
> parms = { 'client_id': settings.FACEBOOK_APP_ID,
>   'redirect_uri': 'http://' + request.get_host() +
> request.get_full_path()
> }
> 
> if 'code' in request.GET:
> parms['code'] = request.GET['code']
> parms['client_secret'] = settings.FACEBOOK_APP_SECRET
> url = 'https://graph.facebook.com/oauth/access_token?' +
> urllib.urlencode(parms)
> 
> response = urllib.urlopen(url).read()
> pdb.set_trace()
> response =cgi.parse_qs(response)
> 
> if 'access_token' in response:
> access_token = response['access_token'][0]
> graph = GraphAPI( access_token )
> profile = graph.get_object("me")
> url = reverse('sites')
> url = reverse('sites')
> 
> else:
> parms['scope'] = 'email,user_location'
> url = "https://graph.facebook.com/oauth/authorize?; +
> urllib.urlencode(parms)
> 
> return HttpResponseRedirect(url)
-- 
Matías Aguirre 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



django facebook authentication

2011-01-25 Thread CrabbyPete
I am going nuts this should be simple but I keep getting a
verification error every time in my response in the following code. I
double checked my APP_ID and SECRET  I try the following code. I'm
using python2.5. Any help appreciated.

def login( request ):

parms = { 'client_id': settings.FACEBOOK_APP_ID,
  'redirect_uri': 'http://' + request.get_host() +
request.get_full_path()
}

if 'code' in request.GET:
parms['code'] = request.GET['code']
parms['client_secret'] = settings.FACEBOOK_APP_SECRET
url = 'https://graph.facebook.com/oauth/access_token?' +
urllib.urlencode(parms)

response = urllib.urlopen(url).read()
pdb.set_trace()
response =cgi.parse_qs(response)

if 'access_token' in response:
access_token = response['access_token'][0]
graph = GraphAPI( access_token )
profile = graph.get_object("me")
url = reverse('sites')
url = reverse('sites')

else:
parms['scope'] = 'email,user_location'
url = "https://graph.facebook.com/oauth/authorize?; +
urllib.urlencode(parms)

return HttpResponseRedirect(url)

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Django-Facebook (yet another thread)

2010-12-15 Thread Justin Murphy
Facebook published a sample GAE application. The code is pretty
straightforward and you can pretty much use the same concepts in your
Django code. I would think that the signed request logic would work
best in middleware.

https://github.com/facebook/runwithfriends

-Justin

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Django-Facebook (yet another thread)

2010-12-15 Thread da.inter...@gmx.net
I had the same problems last weekend. This one here helped me a lot
and is actually working:

https://github.com/iplatform/pyFaceGraph

The tricky thing is how to get the access_token (Aljosa mentioned the
proper documentation). The graphdevtools-example-application under
"test" is also helpful here to get the token inside your application.

On 14 Dez., 20:37, Orazio  wrote:
> Hi all,
> Last day I got the bright idea to start building a facebook app in
> django. I was convinced that documentation would be good given that
> django docs are very well written and facebook is a big project.
> Insteadaaarrg
> On facebook side, there are old and messy docs full of stale options
> and broken links (they changed something in their developer part of
> site...)!
> On django side, lot of small and sometimes unfinished project with no
> docs, and not compatible with recent version of django or fb api. Just
> to cite few:
>
> http://github.com/facebook/python-sdkhttps://github.com/ryanmark/django-facebookconnect/tree/master/facebo...https://github.com/sciyoshi/pyfacebook/https://github.com/tschellenbach/Django-facebookhttps://github.com/dickeytk/django_facebook_oauthhttp://github.com/flashingpumpkin/django-socialregistration
>
> So my question is: which is the best way to realize TODAY a (not so)
> simple hello world application that does some basic tasks such
> - ask to fb user the right to publish things on wall and obtain
> personal data like all the other fb app
> - show my fb name
> - publish something "hello world" on wall
> - be able to comunicate with my server using post (like the example
> for fbconnect should do)
>
> Preventing questions, nowadays:
> - pyfacebook seems not to be compatible to django 1.2.x and their
> example don't work (at least for me)
> - facebook apps are moving to Iframe so that FBML apps will be no
> longer accepted from the next year (according to fb roadmap)
> - python-sdk, to the best of my knowledge, are the only one supported
> by facebook staff. This would be good because I would not like that my
> app relies on a stale-in-6-month library. Unfortunately, I didn't
> understand how to use it in django to do those tasks.
>
> So, today which is the better choice to write an app that do those
> basic tasks? And where can I find some updated documentation ?
>
> Thanks for any clarification! :)
>
> Lorenzo

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Django-Facebook (yet another thread)

2010-12-15 Thread Martey
In my Facebook applications, I have used a combination of the official
Python SDK  and the official
JavaScript SDK . The JavaScript SDK takes care of authentication,
requesting permissions, and providing an access token, which I then
pass to the Python SDK in order to access information through the API.

There is, as far as I know, no official documentation involving Django
and the Python SDK, but one of the comments on a bug report asking for
a Django example suggested . I have not run that code, but
a cursory reading suggests that it would be helpful.

On Dec 14, 2:37 pm, Orazio  wrote:
> Hi all,
> Last day I got the bright idea to start building a facebook app in
> django. I was convinced that documentation would be good given that
> django docs are very well written and facebook is a big project.
> Insteadaaarrg
> On facebook side, there are old and messy docs full of stale options
> and broken links (they changed something in their developer part of
> site...)!
> On django side, lot of small and sometimes unfinished project with no
> docs, and not compatible with recent version of django or fb api. Just
> to cite few:
>
> http://github.com/facebook/python-sdkhttps://github.com/ryanmark/django-facebookconnect/tree/master/facebo...https://github.com/sciyoshi/pyfacebook/https://github.com/tschellenbach/Django-facebookhttps://github.com/dickeytk/django_facebook_oauthhttp://github.com/flashingpumpkin/django-socialregistration
>
> So my question is: which is the best way to realize TODAY a (not so)
> simple hello world application that does some basic tasks such
> - ask to fb user the right to publish things on wall and obtain
> personal data like all the other fb app
> - show my fb name
> - publish something "hello world" on wall
> - be able to comunicate with my server using post (like the example
> for fbconnect should do)
>
> Preventing questions, nowadays:
> - pyfacebook seems not to be compatible to django 1.2.x and their
> example don't work (at least for me)
> - facebook apps are moving to Iframe so that FBML apps will be no
> longer accepted from the next year (according to fb roadmap)
> - python-sdk, to the best of my knowledge, are the only one supported
> by facebook staff. This would be good because I would not like that my
> app relies on a stale-in-6-month library. Unfortunately, I didn't
> understand how to use it in django to do those tasks.
>
> So, today which is the better choice to write an app that do those
> basic tasks? And where can I find some updated documentation ?
>
> Thanks for any clarification! :)
>
> Lorenzo

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Django-Facebook (yet another thread)

2010-12-14 Thread Aljoša Mohorović
first step is to setup your fb canvas app to use oauth 2.0 -
http://developers.facebook.com/docs/authentication/canvas

howto ask use to authorize your app?
you need to point user to proper url -
http://developers.facebook.com/docs/authentication/#authenticating-users-in-a-web-application

this code generates url to ask user for permissions in 'scope' arg:
===
fb_auth_url = "https://graph.facebook.com/oauth/authorize;
args = {
  'client_id': settings.FACEBOOK_API_KEY,
  'redirect_uri': 'http://apps.facebook.com/%s/' % getattr(settings,
'FACEBOOK_APP_NAME', None),
  'type': 'user_agent',
  'display': 'page',
  'scope': 
'user_photos,user_videos,publish_stream,offline_access,user_birthday,...',
}
url = "%s?%s" % (fb_auth_url, urllib.urlencode(args))
===
full list of permissions ('scope' arg) is available -
http://developers.facebook.com/docs/authentication/permissions

what's next after user authorizes app and ext. permissions?
when user authorizes your app and returns to your app you'll get
'signed_request' on first request.
you can extract data from 'signed_request' with this code:

===
import json # or simplejson as json
import base64
import hashlib
import hmac

# code for facebook signed_request based on/copied from:
http://sunilarora.org/parsing-signedrequest-parameter-in-python-bas
# additional info:
http://stackoverflow.com/questions/3302946/how-to-base64-url-decode-in-python

def base64_url_decode(inp):
padding_factor = (4 - len(inp) % 4) % 4
inp += "="*padding_factor
return base64.b64decode(unicode(inp).translate(dict(zip(map(ord,
u'-_'), u'+/'

def parse_signed_request(signed_request, secret):
l = signed_request.split('.', 2)
encoded_sig = l[0]
payload = l[1]

sig = base64_url_decode(encoded_sig)
data = json.loads(base64_url_decode(payload))

if data.get('algorithm').upper() != 'HMAC-SHA256':
# log.error('Unknown algorithm')
return None
else:
expected_sig = hmac.new(secret, msg=payload,
digestmod=hashlib.sha256).digest()

if sig != expected_sig:
return None
else:
# log.debug('valid signed request received..')
return data
===

ok, so what's in data from 'signed_request'?
data from 'signed_request':
===
data = parse_signed_request(request.GET.get('signed_request'),
settings.FACEBOOK_SECRET_KEY)

# fb uid for user
uid = data.get('user_id')

# with access token you can access graph api and actually do something
# check http://developers.facebook.com/docs/api for more info
access_token = data.get('oauth_token')
===

so how do i actually do something?
when you have access_token it's pretty simple to use graph api.
to publish something:
===
h = httplib2.Http()
api_url = "http://graph.facebook.com/PROFILE_ID/feed;
args = {...} # provide arguments as described here -
http://developers.facebook.com/docs/reference/api/post#publishing
resp, content = h.request(api_url, "POST", urlencode(args))
===

i've posted this from my head, maybe i forgot something, so post
additional questions if something doesn't work as expected.
official facebook python-sdk actually works but nobody is maintaining it.

also, if you ever used google apis or anything else that actually
worked prepare yourself for hell know as facebook platform.

Aljosa Mohorovic

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Django-Facebook (yet another thread)

2010-12-14 Thread Orazio
Hi all,
Last day I got the bright idea to start building a facebook app in
django. I was convinced that documentation would be good given that
django docs are very well written and facebook is a big project.
Insteadaaarrg
On facebook side, there are old and messy docs full of stale options
and broken links (they changed something in their developer part of
site...)!
On django side, lot of small and sometimes unfinished project with no
docs, and not compatible with recent version of django or fb api. Just
to cite few:

http://github.com/facebook/python-sdk
https://github.com/ryanmark/django-facebookconnect/tree/master/facebookconnect
https://github.com/sciyoshi/pyfacebook/
https://github.com/tschellenbach/Django-facebook
https://github.com/dickeytk/django_facebook_oauth
http://github.com/flashingpumpkin/django-socialregistration

So my question is: which is the best way to realize TODAY a (not so)
simple hello world application that does some basic tasks such
- ask to fb user the right to publish things on wall and obtain
personal data like all the other fb app
- show my fb name
- publish something "hello world" on wall
- be able to comunicate with my server using post (like the example
for fbconnect should do)

Preventing questions, nowadays:
- pyfacebook seems not to be compatible to django 1.2.x and their
example don't work (at least for me)
- facebook apps are moving to Iframe so that FBML apps will be no
longer accepted from the next year (according to fb roadmap)
- python-sdk, to the best of my knowledge, are the only one supported
by facebook staff. This would be good because I would not like that my
app relies on a stale-in-6-month library. Unfortunately, I didn't
understand how to use it in django to do those tasks.

So, today which is the better choice to write an app that do those
basic tasks? And where can I find some updated documentation ?

Thanks for any clarification! :)

Lorenzo

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: django-facebook

2010-10-10 Thread shacker
On Oct 10, 1:34 am, Sævar Öfjörð  wrote:
> I'm using Django Socialregistration for this 
> purpose.http://github.com/flashingpumpkin/django-socialregistration
>
> If the user is already logged in and clicks the facebook button, the
> existing account is simply linked to the FB account.
> New users have the option to set up a username.

Ah - good to know django-facebookconnect isn't the only app doing that
correctly, thanks for that. I did eventually get things worked out
with django-facebookconnect - you can get into some weird situations
with multiple cookies/sessions, multiple logins, multiple linkages,
trying to log into one account when a previous cookie hasn't been
deleted, etc. ... the kind of stuff you're likely to hit during
development but that users aren't. I think I've got it solid now, but
will consider switching to django-socialauth if I hit further
problems, thanks.

./s

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: django-facebook

2010-10-10 Thread Sævar Öfjörð
I'm using Django Socialregistration for this purpose.
http://github.com/flashingpumpkin/django-socialregistration

If the user is already logged in and clicks the facebook button, the
existing account is simply linked to the FB account.
New users have the option to set up a username.

- Sævar

On Oct 8, 5:19 pm, shacker <shac...@birdhouse.org> wrote:
> I chose django-facebook to allow site authentication via Facebook
> Connect because it seems to be alone amongst the various solutions in
> knowing how to smartly connect existing site accounts to FB logins
> rather than blindly creating new accounts (if you have users who
> sometimes log in the traditional way and other times via FB, they end
> up with two accounts in the system).
>
> All went well with implementation until I hit this issue, and it's a
> show-stopper:
>
> http://github.com/ryanmark/django-facebookconnect/issues/#issue/3
>
> No response from the developer there, so asking here - has anyone hit
> this? How did you overcome? Is there another Facebook Connect app you
> prefer? Or a more recent fork of django-facebook that works better?
>
> Thanks,
> Scot

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



django-facebook

2010-10-08 Thread shacker
I chose django-facebook to allow site authentication via Facebook
Connect because it seems to be alone amongst the various solutions in
knowing how to smartly connect existing site accounts to FB logins
rather than blindly creating new accounts (if you have users who
sometimes log in the traditional way and other times via FB, they end
up with two accounts in the system).

All went well with implementation until I hit this issue, and it's a
show-stopper:

http://github.com/ryanmark/django-facebookconnect/issues/#issue/3

No response from the developer there, so asking here - has anyone hit
this? How did you overcome? Is there another Facebook Connect app you
prefer? Or a more recent fork of django-facebook that works better?

Thanks,
Scot

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Django facebook group

2010-10-07 Thread Lakshman Prasad
Hi,

I just created a django facebook group:
http://www.facebook.com/home.php?sk=group_114422875284562

Those interested may join.

PS: I know it doesn't matter to some people. If it doesn't matter, it
shouldn't matter even to complain, I think :)

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Need Google Appengine - Django - Facebook (pyFacebook) Advice

2009-12-21 Thread Kaan Soral
Hello;

I currently develop Facebook applications with Php, the need for a
scalable platform and the charm to use a decent framework led me to
learn Appengine, after experimenting a little bit with webapp
framework and not being able to use pyFacebook lib with webapp, I
decided I should learn Django to use with Appengine and pyFacebook
(the pyFacebook is obviously designed for Django).

Is there anyone out there that develop Facebook applications with
Django on Appengine and pyFacebook that can summarize me what kind of
problems I may face.

It may sound a pointless question, but Facebook is a problematic
platform, even using its official php api is problematic
sometimes.Handling possible appengine/pyFacebook/django conflicts
would be a nightmare.

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.




django facebook app

2007-08-31 Thread [EMAIL PROTECTED]

I'm looking for someone to build a facebook app for my django based
site.

If anyone is interested, please send me a private message.

Thanks,

Mike Howsden


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---