Giter VIP home page Giter VIP logo

Comments (4)

patrickml avatar patrickml commented on August 26, 2024

Hmm i haven't seen this one b4. Can you give me an example of the code you are trying to run?

from braintree.

patrickml avatar patrickml commented on August 26, 2024

Here is an example of how I execute my code


var bt = BrainTreeConnect({
        environment: Braintree.Environment.Sandbox,
        merchantId: Meteor.settings.BRAIN_TREE.MERCHANT_ID,
        publicKey: Meteor.settings.BRAIN_TREE.PUBLIC_KEY,
        privateKey: Meteor.settings.BRAIN_TREE.PRIVATE_KEY
      });

      var charge = bt.transaction.sale({
        amount: String(receipt.total),
        merchantAccountId: supplier.profile.merchantAccount.id,
        customerId: user.profile.billing.customerId,
        options: {
          submitForSettlement: true,
          holdInEscrow: true
        },
        serviceFeeAmount: String(receipt.profit),
        taxAmount: String(receipt.tax)
      });

from braintree.

komrad avatar komrad commented on August 26, 2024

Thanks for this. I noticed I tried putting my Sandbox CSE Key into the 'BrainTreeConnect = BrainTreeConnect(key)' from your Readme example (1st line), while the CSE key is meant for the client-side braintree object creation. Deleting this line allowed me to set up the getClientToken I wanted:

var bt;

Meteor.startup(function () {
bt = BrainTreeConnect({
environment: Braintree.Environment.Sandbox,
merchantId: Meteor.settings.BRAIN_TREE.MERCHANT_ID,
publicKey: Meteor.settings.BRAIN_TREE.PUBLIC_KEY,
privateKey: Meteor.settings.BRAIN_TREE.PRIVATE_KEY
});
});

Meteor.methods({
getClientToken: function(){
var token = bt.clientToken.generate({});
console.log(token.clientToken);
return token.clientToken;
}
});

from braintree.

patrickml avatar patrickml commented on August 26, 2024

Awesome, Im glad you were able to figure it out. If you ever have any questions don't hesitate to ask!

from braintree.

Related Issues (16)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.