Menu
  • HOME
  • TAGS

1 application many PayPal accounts

paypal,multiple-accounts

This is not new for the PayPal api, as you might know, shopping cart software needs to do that in case of a marketplace. You have to ask the "self-employed" for permission. This will give you a token. This explains the permissions service. https://developer.paypal.com/docs/classic/permissions-service/integration-guide/PermissionsAbout/ This gives you the technical know...

Multiple GA trackers gets each other variables

google-analytics,multiple-accounts

First of all, _setCustomVar must come before _trackPageview. Now to your problem: This happens because User level custom vars are stored in the cookie. Since both your trackers share the same cookie the second tracker will be sent with the vars set on the first tracker. You have 3 options....

Cloning a private Github repo as a collaborator when I have multiple accounts

git,github,git-clone,repositories,multiple-accounts

Solved: just by calling my github second account via SSH (ssh -T [email protected]), I discovered that it answered me: Hi **account1**! You've successfully authenticated, but GitHub does not # provide shell access. Then I edited my ssh config file adding the IdentitiesOnly yes statement: Host github.com HostName github.com User git...