Hi, On Sat, Jun 23, 2018 at 11:00:00AM -0700, Mike Orr wrote: > On Sat, Jun 23, 2018 at 5:57 AM, Gael Pasgrimaud <[email protected]> wrote: > > WebTest 2.0.30 has been released. > > > > Here are the changes: > > > > - Add ``Email`` class for input fields with type "email". > > > > - Documentation bearer token and JWT authorization > > What is a bearer token and JWT authorization? Does that mean a CSRF token?
It's like basic auth but use tokens in the Authorization headers instead of base64(user:pass). It's a bit more secure... JWT token may also contains some extra data (user infos, api scope, etc.) but those are encrypted using public/private keys. I don't know much about bearer. Most apis supports one of those, or both. https://docs.pylonsproject.org/projects/webtest/en/latest/api.html#webtest.app.TestApp.authorization -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pylons-discuss/20180623182648.GC11339%40boiboite. For more options, visit https://groups.google.com/d/optout.
