Djangoroidの奮闘記

python,django,angularJS1~三十路過ぎたプログラマーの奮闘記

2016-10-12から1日間の記事一覧

Django e-commerce part74 Run Braintree Transaction

Bratintreeのtransactionを試してみる。 Braintreeのtokenを処理するClient を自分たちのサイトに設定する。 公式ドキュメント参照: Set Up Your Client | JS - Braintree Developer Documentation templates/javascript.html に追記する。 ちょっとjsv3は…

Django e-commerce part73 Braintree Instance Methods

Braintree Instance Methods orders/models.py get_braintree_id メソッドを設定する。 class UserCheckout(models.Model): ... @property def get_braintree_id(self,): self = instance if not instance.braintree_id: result = braintree.Customer.create…

Django e-commerce part72 Braintree & Customer ID

Braintree の設定方法 Braintree sandboxに登録 2016年10月現在では、braintreeは日本に対応していないため、とりあえずsandboxで試してみる。 Braintreeをinstall pip install braintree pip freeze > requirements.txt settings/local.py にBratintr…