flask-social-example icon indicating copy to clipboard operation
flask-social-example copied to clipboard

An application that serves as a working example for Flask-Social

Results 14 flask-social-example issues
Sort by recently updated
recently updated
newest added

Bumps [werkzeug](https://github.com/pallets/werkzeug) from 0.9.4 to 0.15.3. Release notes *Sourced from [werkzeug's releases](https://github.com/pallets/werkzeug/releases).* > ## 0.15.3 > * Blog: https://palletsprojects.com/blog/werkzeug-0-15-3-released/ > * Changes: https://werkzeug.palletsprojects.com/en/0.15.x/changes/#version-0-15-3 > > > ## 0.15.2 > *...

dependencies

Bumps [flask](https://github.com/pallets/flask) from 0.10.1 to 1.0. Release notes *Sourced from [flask's releases](https://github.com/pallets/flask/releases).* > ## 1.0 > The Pallets team is pleased to release Flask 1.0. [Read the announcement on our...

dependencies

Bumps [httplib2](https://github.com/httplib2/httplib2) from 0.8 to 0.19.0. Changelog Sourced from httplib2's changelog. 0.19.0 auth: parse headers using pyparsing instead of regexp httplib2/httplib2#182 auth: WSSE token needs to be string not bytes...

dependencies

Bumps [jinja2](https://github.com/pallets/jinja) from 2.7.1 to 2.11.3. Release notes Sourced from jinja2's releases. 2.11.3 This contains a fix for a speed issue with the urlize filter. urlize is likely to be...

dependencies

Bumps [pyyaml](https://github.com/yaml/pyyaml) from 3.10 to 5.4. Changelog Sourced from pyyaml's changelog. 5.4 (2021-01-19) yaml/pyyaml#407 -- Build modernization, remove distutils, fix metadata, build wheels, CI to GHA yaml/pyyaml#472 -- Fix for...

dependencies

Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.6 to 1.26.5. Release notes Sourced from urllib3's releases. 1.26.5 :warning: IMPORTANT: urllib3 v2.0 will drop support for Python 2: Read more in the v2.0 Roadmap Fixed...

dependencies

Bumps [requests](https://github.com/psf/requests) from 2.0.0 to 2.20.0. Changelog Sourced from requests's changelog. 2.20.0 (2018-10-18) Bugfixes Content-Type header parsing is now case-insensitive (e.g. charset=utf8 v Charset=utf8). Fixed exception leak where certain redirect...

dependencies

## ` - - [25/Feb/2016 05:19:27] "POST /login/facebook HTTP/1.1" 302 - DEBUG in views [/home/user/flask-social-example/venv/local/lib/python2.7/site-packages/flask_social/views.py:195]: ## Received login response from Facebook: {'access_token': u'CAAGo05W3ZC8wBANdZBzx6j1TmqNoAnoQ0jFsaOMYp06zrciDajbvospkXkMixzmvZAJZA7pwAZC03pLV0KwukZAxAkzYdvdiulU2xciGssH0Y67wj0Lj0xVBuAUVHiSSkKfRDjEQOhlxEOJ2QtGypCxLOJ4cRDu5UIhUxMRBVN0ryfZA0BVaNFrcbJM6izr4lW4rr0ZCBgw3SwD5P1GTB2LY', 'expires': u'5180470'} --- DEBUG in **init** [/home/user/flask-social-example/app/**init**.py:54]:...

I cloned the repo and attempted `python manage.py` but this resulted in: ``` ImportError: cannot import name create_app ``` Should the following in [`manage.py`](https://github.com/mattupstate/flask-social-example/blob/master/manage.py#L7): ``` from app import create_app manager...

In my application I'm doing the following: ``` class ExtendedRegisterForm(RegisterForm): username = StringField('Username', [DataRequired(), Length(min=3, max=50), Regexp(r'^[A-Za-z0-9@#$%^&+=]+$', message='Username contains invalid characters'), UniqueUsername(message='Username taken') ]) ``` and came across your similar...