We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello!
I am grabbing a transaction list through the client.user.get_user_transactions(user_id=user.id, callback=callback) method.
client.user.get_user_transactions(user_id=user.id, callback=callback)
While going through the Transaction object, I wasn't sure what attribute denotes whether it was a payment received vs a payment was made.
Any pointers would be fabulous! Ty 😸
The text was updated successfully, but these errors were encountered:
@bumble-bee-chuna Wondering how you got access to the api. Where can I get a key?
Sorry, something went wrong.
@navincodesalot
You can initialize venmo in python using the following
from venmo_api import Client # request an access token from venmo, will require sms authentication access_token = Client.get_access_token(username="username", password="password") # initialize venmo api venmo = Client(access_token=access_token)
Davis8483 @Davis8483 Ah so its not API key. Its your login. Just wondering is it legal use reverse engineered apis for Venmo?
Hello! I am grabbing a transaction list through the client.user.get_user_transactions(user_id=user.id, callback=callback) method. While going through the Transaction object, I wasn't sure what attribute denotes whether it was a payment received vs a payment was made. Any pointers would be fabulous! Ty 😸
Negative VS positive I think????
No branches or pull requests
Hello!
I am grabbing a transaction list through the
client.user.get_user_transactions(user_id=user.id, callback=callback)
method.While going through the Transaction object, I wasn't sure what attribute denotes whether it was a payment received vs a payment was made.
Any pointers would be fabulous! Ty 😸
The text was updated successfully, but these errors were encountered: