-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
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
TransacionService list with filter doesnt work. #47
Comments
Reproduced. Problem is that the API works with timestamps in seconds and Java per default with milliseconds. public Transaction.Filter byCreatedAt( final Date startCreatedAt, final Date endCreatedAt ) {
this.createdAt = String.valueOf( startCreatedAt.getTime()/1000 ) + "-" + String.valueOf( endCreatedAt.getTime()/1000 );
return this;
} |
Awesome! Thanks Emilian!! On Saturday, April 5, 2014, Emilian Stoilkov notifications@github.com
"thiago:locatelli$gmail:com".replace(':','.').replace('$','@') |
@thiagolocatelli it should be fixed with v3.1.2 |
@thiagolocatelli can you confirm, this issue has been fixed? |
Hi Emilian, Did you guys change the dashboard? I am logging in but I cant see the Thank you On Fri, Apr 11, 2014 at 3:23 AM, Emilian Stoilkov
"thiago:locatelli$gmail:com".replace(':','.').replace('$','@') |
@thiagolocatelli i just emailed you :) |
I just created a transacion on my account and I am trying to list this transaction. I am trying to get all transactions within the last 30 days, but I am also putting the range as 1 day after, to make sure recent charges are included. Its not working
The text was updated successfully, but these errors were encountered: