We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
auth_user_param
Consider the following payload:
{ "company":{ "name":"Royal Lafleur", "website":"http://google.com" }, "user":{ "first_name":"Yinthe", "last_name":"van Dagsburg", "email":"[email protected]" }, "shipping_address":{ "street":"Ivyweg", "house_number":"8", "city":"Schore", "postal_code":"8374IE", "country":"NL" }, "billing_address":{ "street":"Femkeboulevard", "house_number":"7", "city":"Hallum", "postal_code":"5594TA", "country":"NL" }, "amount":1277179, "currency":"EUR" }
Then something like this should be possible:
signature_to_dict( auth_user=payload["user"]["email"], secret_key=SECRET_KEY, extra=payload, auth_user_param="user.email", )
Think about the best separator (might be the dot).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Consider the following payload:
Then something like this should be possible:
Think about the best separator (might be the dot).
The text was updated successfully, but these errors were encountered: