热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

IsanyoneworkingonaBraintreemodule?

IveseenBraintreementionedafewtimes,butisanyoneworkingondevelopinganOmnipa

I've seen Braintree mentioned a few times, but is anyone working on developing an Omnipay module?

We're currently using Payflow, but plan to switch to Braintree.

If someone has already done some work on Braintree, I would hate to reinvent the wheel.

Even if your code is not complete, I would be happy to collaborate and help you to finish it.

该提问来源于开源项目:thephpleague/omnipay

Makes sense to me.  If Braintree
only offers official support via their SDK,
then that's what we should use.
 
Currently we're using a kludgy home-grown
interface on top of the Braintree SDK, so
it would be nice to have a consistent Omnipay
interface.  We use a lot of special
Braintree functions (like escrow, submerchants,
etc) that aren't provided by most processors,
so someone will need to figure out how to
map those to Omnipay methods.  If I
have some time, maybe I can work on that
and help out.
 



Yeah,
but I don't think the HTTP API is really
exposed. They are just >>
  offering their PHP (or other
languages) SDK libraries, not their REST >>
  API.  >>   See
https://www.braintreepayments.com/blog/when-rest-isnt-good-enough/ >>
  (didn't find a recent update)
 >>  If they only officially
support the SDKs, it could be dangerous to
use >>   undocumented
API's by reverse engineering the php library.
Plus it would >>   be
very time consuming.  >>  Don't
know what the exact considerations are, but
it probably won't be a >>
  big problem. Only the testing
part will be different from other API's, >>
  because we'd have to fake the
SDK responses etc.  >>
 Reply to this email directly or view
it on GitHub.  >>   

----------------------- Original
Message -----------------------
  
From: "Barry vd. Heuvel"
notifications.com
To: thephpleague/omnipay
omnipay.github.com
Date: Tue, 07 Jul 2015 12:22:55
-0700
Subject: Re: [omnipay] Is
anyone working on a Braintree module? (#211)
  
Yeah, but I don't think the HTTP API is
really exposed. They are just offering their
PHP (or other languages) SDK libraries, not
their REST API. See https://www.braintreepayments.com/blog/when-rest-isnt-good-enough/
(didn't find a recent update)
If they only officially support the SDKs,
it could be dangerous to use undocumented
API's by reverse engineering the php library.
Plus it would be very time consuming.
Don't know what the exact considerations
are, but it probably won't be a big problem.
Only the testing part will be different from
other API's, because we'd have to fake the
SDK responses etc.
—Reply
to this email directly or view
it on GitHub.





   



推荐阅读
  • 深入解析 Android 中 EditText 的 getLayoutParams 方法及其代码应用实例 ... [详细]
  • Spring – Bean Life Cycle
    Spring – Bean Life Cycle ... [详细]
  • 解决Only fullscreen opaque activities can request orientation错误的方法
    本文介绍了在使用PictureSelectorLight第三方框架时遇到的Only fullscreen opaque activities can request orientation错误,并提供了一种有效的解决方案。 ... [详细]
  • 单片微机原理P3:80C51外部拓展系统
      外部拓展其实是个相对来说很好玩的章节,可以真正开始用单片机写程序了,比较重要的是外部存储器拓展,81C55拓展,矩阵键盘,动态显示,DAC和ADC。0.IO接口电路概念与存 ... [详细]
  • 本文介绍了如何利用HTTP隧道技术在受限网络环境中绕过IDS和防火墙等安全设备,实现RDP端口的暴力破解攻击。文章详细描述了部署过程、攻击实施及流量分析,旨在提升网络安全意识。 ... [详细]
  • 秒建一个后台管理系统?用这5个开源免费的Java项目就够了
    秒建一个后台管理系统?用这5个开源免费的Java项目就够了 ... [详细]
  • 基于Web的Kafka管理工具Kafkamanager首次访问Web界面的详细配置指南(附图解)
    首次访问Kafkamanager Web界面时,需要对Kafka集群进行配置。这一过程相对简单,用户只需依次点击【Cluster】>【Add Cluster】,按照提示完成相关设置即可。本文将通过图文并茂的方式,详细介绍每一步的配置步骤,帮助用户快速上手Kafkamanager。 ... [详细]
  • Python 伦理黑客技术:深入探讨后门攻击(第三部分)
    在《Python 伦理黑客技术:深入探讨后门攻击(第三部分)》中,作者详细分析了后门攻击中的Socket问题。由于TCP协议基于流,难以确定消息批次的结束点,这给后门攻击的实现带来了挑战。为了解决这一问题,文章提出了一系列有效的技术方案,包括使用特定的分隔符和长度前缀,以确保数据包的准确传输和解析。这些方法不仅提高了攻击的隐蔽性和可靠性,还为安全研究人员提供了宝贵的参考。 ... [详细]
  • MATLAB字典学习工具箱SPAMS:稀疏与字典学习的详细介绍、配置及应用实例
    SPAMS(Sparse Modeling Software)是一个强大的开源优化工具箱,专为解决多种稀疏估计问题而设计。该工具箱基于MATLAB,提供了丰富的算法和函数,适用于字典学习、信号处理和机器学习等领域。本文将详细介绍SPAMS的配置方法、核心功能及其在实际应用中的典型案例,帮助用户更好地理解和使用这一工具箱。 ... [详细]
  • 本文详细介绍了如何在Java Web服务器上部署音视频服务,并提供了完整的验证流程。以AnyChat为例,这是一款跨平台的音视频解决方案,广泛应用于需要实时音视频交互的项目中。通过具体的部署步骤和测试方法,确保了音视频服务的稳定性和可靠性。 ... [详细]
  • 在Android 4.4系统中,通过使用 `Intent` 对象并设置动作 `ACTION_GET_CONTENT` 或 `ACTION_OPEN_DOCUMENT`,可以从相册中选择图片并获取其路径。具体实现时,需要为 `Intent` 添加相应的类别,并处理返回的 Uri 以提取图片的文件路径。此方法适用于需要从用户相册中选择图片的应用场景,能够确保兼容性和用户体验。 ... [详细]
  • 通过使用CIFAR-10数据集,本文详细介绍了如何快速掌握Mixup数据增强技术,并展示了该方法在图像分类任务中的显著效果。实验结果表明,Mixup能够有效提高模型的泛化能力和分类精度,为图像识别领域的研究提供了有价值的参考。 ... [详细]
  • 本文探讨了Android系统中支持的图像格式及其在不同版本中的兼容性问题,重点涵盖了存储、HTTP传输、相机功能以及SparseArray的应用。文章详细分析了从Android 10 (API 29) 到Android 11 的存储规范变化,并讨论了这些变化对图像处理的影响。此外,还介绍了如何通过系统升级和代码优化来解决版本兼容性问题,以确保应用程序在不同Android版本中稳定运行。 ... [详细]
  • 《Intel IA-32 架构软件开发人员手册详尽指南》提供了详尽的 IA-32 架构技术文档,涵盖指令集、系统编程和硬件接口等内容,为软件开发人员提供全面的技术支持和参考。该手册不仅包括详细的架构说明,还提供了丰富的编程示例和最佳实践,帮助开发人员更好地理解和应用 IA-32 架构。 ... [详细]
  • 本文深入探讨了CGLIB BeanCopier在Bean对象复制中的应用及其优化技巧。相较于Spring的BeanUtils和Apache的BeanUtils,CGLIB BeanCopier在性能上具有显著优势。通过详细分析其内部机制和使用场景,本文提供了多种优化方法,帮助开发者在实际项目中更高效地利用这一工具。此外,文章还讨论了CGLIB BeanCopier在复杂对象结构和大规模数据处理中的表现,为读者提供了实用的参考和建议。 ... [详细]
author-avatar
哎哟不错哦凉皮
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有