We do what other FileMaker developers say can’t be done.
Angell EYE has been developing heavily with FileMaker over the past 7 years specializing in custom integration for services such as eBay, PayPal, UPS, FedEx, USPS, FreightQuote.com, Google Maps, and much more. If you’re looking for a FileMaker developer, look no further!
- Product Management Solutions
- Custom eBay Auction Management
- Real-Time Integrated Checkout Solutions w/ PayPal, Authorize.net, or Google Checkout.
- Custom Real-Time Shipping and Freight Calculators
- Point-of-Sale Credit Card Swiping solutions for PayPal and Authorize.net
- Latest Technology Including Full PHP API Integration with FileMaker Server Advanced 11
hello
I wanted to know if you had tempalte ready to publish your listings on ebay?
Thanks for your cooperation
marcello
Are you talking about pushing a button in FileMaker to have an item posted on eBay automatically? I’ve done that for people in the past, but I don’t have anything readily available to just plugin. I could build it for you custom, though, if you’re interested.
Hello
how much will it cost?
thanks
marcello
That really depends on what exactly you need done. There’s a whole lot that could be involved. Email me from my contact page and we can discuss the details more closely.
Is it possible to pull the information on PayPal transaction for the last day into a Filemaker database by running a script in Filemaker?
If you want all transactions for a given day you could use TransactionSearch to return all of those transaction ID’s, and then loop through that result to call GetTransactionDetails for each one accordingly.
I tried out your Paypal IPN Solution, and it works great!
I have hooked it in to Filemaker and can see all the IPNs as they come in.
However, the only field I cannot see is the raw log file, ipn_data_serialized.
It is viewed in Filemaker using ODBC, as “Untitled.dat”. But I can see it in Cpanel phpMyAdmin fine, as serialized.
This is really the only field I need to see, so I can put this in my scraper, and create an order invoice.
Any idea how to view the field ipn_data_serialized in Filemaker, using ODBC?
Thanks in advance.
I’m not sure where you’d be seeing that..?? How exactly are you trying to use it?
I just went in to one of my FM solutions that have this IPN template hooked up via ESS. I added the paypal_ipn_raw_log table to my Relationships tab under Manage -> Database, and that created a layout for me automatically, of course. Now when I look at that layout I see the ipn_data_serialized field with the text value as expected.
Keep in mind that serialized data might be a little tough to work with in FM. You may be better off working directly off the paypal_ipn_orders, paypal_ipn_refunds, etc.
Yes, this is a little strange, because I see “Untitled.dat” in the field.
I looked it up on google, and it appears that this is what Filemaker gives when you put text into a container field. But its not a container field.
Anyhow, my solution was just to create an extra field called ipn_data_text, in the raw logs table. And in the ipn-listener.php file, just assign an unserialized version of the logs to it. Now it shows up fine, as just text. I just insert this into my scraper, and the order/invoice/shipping label, etc. are automatically created.
This is a great script, and will same me loads of time.
Thank you so much for this!
I forgot to mention, I found an unserialized function, that you can use to convert back the data to regular text format, in Filemaker.
http://www.briandunning.com/cf/1618
Perfect. Glad you got it worked out.