which package is advisable to implemet Oauth for stripe connect in meteor. Any example demos out there? -
i looking implememt stripe connect in meteor. understand first step able link user account platform accout. believ done via oauth process. aware of package( https://github.com/chadokruse/meteor-accounts-stripe-connect) getting type error "cannot call method 'insert' of undefined" following code.
accounts.loginserviceconfiguration.insert({ service: 'stripe', appid: meteor.settings.client_id, secret: meteor.settings.stripe, scope: 'read_write', //or read_only }); any other way going without package?
based on this tutorial, can use mrgalaxy:stripe. might getting error you're seeing because haven't added service-configuration package. meteor add service-configuration.
Comments
Post a Comment