Skip to main content

eBay vs. PayPal - now in English

I have a problem. A problem which has been around for over 1.5 years (!!!). I CAN'T pay with PayPal on eBay. Up until 2 weeks ago this problem only existed on the German eBay site (ebay.de). The solution was - even though tedious and time consuming - very simple: I logged in through the Austrian (ebay.at) or British (ebay.co.uk) site and did the payment there.

Lately that doesn't work anymore. Why? Because eBay doesn't get it. The German site was changed a long time ago to a "pop-up" for handling the PayPal login. That looks like this:

Since they did that I can't pay with PayPal. No matter how often I type in my e-mail address and password, I get the error that my credentials were wrong. THEY AREN'T!

The Austrian and British (and French, Spanish and probably a lot more) sites were changed to this login page a short time ago. And behold: it doesn't work there either!

I called eBay and PayPal multiple times because of this problem (at least two times each). PayPal were already AWARE of the problem and they confirmed twice that the problem lies with eBay and that they've already opened a "support ticket" at eBay for this! The eBay support is simply bad. They don't have any information and are trying to tell me to use IE. *sarcastic LOL*

If you're a sysadmin you'll know something about debugging and of course you get curios. What's broken? Why is it broken? Could it be really my browser? The answer for the last one is: NO. It's not my PC or my browser, because I've had this problem with lots of different PC/browser combinations.

Tested by me:
  • PC1: Windows 7 with Firefox (ca. all versions from 30.0 to 50.0)
  • PC2: Linux Mint with Firefox (also lots of versions)
  • PC3: Linux Mint with Google Chrome
Always the same result: HTTP 400 / Bad Request. It looks somewhat like this:


(I'd be happy to forward the complete picture to any eBay or PayPal  employee who can help me.)

As you cas see the PayPal login API (https://www.paypal.com/webapps/helios/api/auth/login) returns the error.

In the headers there's even a "Paypal-Debug-Id", which I'm sure would be very helpful in tracking the error. Of course only if somebody from one of these companies would be so kind to analyse the problem.

I even tried to disconnect and reconnect my PayPal and eBay accounts multiple times. Didn't help either.

Comments

Popular posts from this blog

Making a game for the PlayStation 2

Actually, not really for the PS2 - not natively at least. Rather making a game for YaBasic which can be played on the PS2. I started my geek life when I was 11 years old and got my first computer (486). A few years later I found some games written in QBasic on a gaming magazine's CD. That was the first time I came in contact with programming. I didn't understand much back then, because I wasn't taught before and I didn't speak any English (it's my 3rd language...) so I was just trying to figure out how the games worked by modifying stuff. These games were simple text adventures, where you had to make choices and the game would progress that way. There were no commands like "go left" or "pick up". The game presented you all the options and you had to input the number of the option you chose. And instead of "if-else" there were GOTOs everywhere. This was how I made my first game, a multiple-choice quiz with 10 questions. Since I didn...

Copyright needs to die

In latest gaming news: Mafia was released on GOG! Yay! That's great news, because it means that you can get the game DRM-free and guaranteed to work with your Win7 or Win10 installation! (And it's a real classic.) But wait! What's that? You're sitting in a car. Waiting for that famous tune everybody associates with Mafia . You don't know the title or the artist, but you immediately know that song. It plays on the radio. At least: it used to play on the radio. It's silent now. The radio is broken. No sound. Enjoy the view while driving... The game released on GOG all right. Unfortunately due to copywrong it was released without it's original soundtrack. No licensed music. No Django Reinhardt playing Belleville (that's the song you were looking for ;)). All this because copyshit still "protects" music (more like "extorts" people) after over 75 years! Yes, Belleville was first released in 1942. I mean I would get it if co...

RE: "Hacking" the PS2 - Game development

Happy 2019 everbody! This is a follow-up to my previous post:  "Hacking" the PS2 This whole thing started basically when I discovered that there is a possibility to write your own programs for the PS2. I didn't have a PS2 back in the day (I started collecting consoles around 2011) so I just found out recently. Finding out how YaBasic worked and "reverse engineering" the checksum in the source code proved to be so entertaining that I basically lost interest in making a game after that. During the holidays I had a lot of time and to make something productive I decided to take it up again and this time actually make a game. I also wanted to "streamline" the development process by not having to use 3 different programs and 2 OS's to test every change in the code I make. My old process was: write the code in Vim run the Bash script (from the previous post) to add the checksum use PS2 Save Builder to make a save file use mymc to a...