5 ms·
Sorry, but this really feels like hyperbole to me. For two reasons: 1) Before any action is shared back from the site to Facebook, the user has agreed to autho
by daveman692 15y ago
Sorry, but this really feels like hyperbole to me. For two reasons:
1) Before any action is shared back from the site to Facebook, the user has agreed to authorize that site (application) and add it to their timeline. Part of that dialog shows what's going to happen (https://developers.facebook.com/docs/beta/authentication/ https://developers.facebook.com/docs/beta/authentication/).
2) There are plenty of other examples around the web where submitting a HTTP GET request results in an action. For example, clicking an up arrow on Hacker News submits a GET request which increases the karma score on another author. What becomes more important is how you protect against XSRF and crawlers not accidentally changing state within your app.
- Lagged2Death 15y agoBefore any action is shared back from the site to Facebook, the user has agreed to authorize that site (application)... That sounds great in theory. I just looked at my Facebook "App Settings" page and found two applications/sites that I had supposedly authorized to interact with my Facebook profile. I don't know what they do, and I don't recall ever deliberately granting anyone or anything, especially the two sites in question, any permission to interact with Facebook on my behalf.
- kposehn 15y agoTo be fair, that doesn't mean it is their fault you allowed them to do so. It is indeed your responsibility to look at what you allow to access your profile and what you deny that access to.
- Lagged2Death 15y agoWhen I say "I don't recall," I guess I'm using understatement in a bad place for it. One of the sites in question was Bing. I don't use Bing. There is no way in hell I authorized these apps. And this isn't a case where two apps from a long list seem suspicious; I've never authorized any apps, ever. The Facebook guarantee that authorization is required has no technical enforcing measure; it's toothless bullshit. We're trusting the greater Facebook ecosystem to uphold such policies and guarantees out of the goodness of its collective heart. Ha. Ha. We're also trusting Facebook itself to accurately list such relationships on their Apps page. I don't see why such trust is warranted, at this point.
- texel 15y agoWow, I just checked my apps, and sure enough, Bing was authorized. I, too, have never used Bing. That kind of scares the hell out of me.
- pyre 15y agoAt least in Bing's case, it may have been automatically added as part of some sort of partnership. Not that it's any less sleazy to add (and authorize) apps on your behalf without your knowledge.
- nbm 15y agoThe App Settings page will tell you when last you used it, and when last they accessed information (once you click on "Edit"). If you are truly concerned about this happening behind your back (rather than making a comment about how easy it is to not recall adding something), you can contact me (neilblakeymilner at fb.com) and I will try connect you with someone who might be able to help you find out when you did it and whatever other information might be attached to that event (I don't really know what, if any, we keep on that event type).
- cousin_it 15y agoI just went to my App Settings page and also found multiple apps that I know for certain I didn't authorize.
- nbm 15y agoFeel free to contact me as well if you are sure that you didn't authorize them. I am not sure I can help, but I will try. There are only a select few applications that get authorized automatically when you use them (Instant Personalization - https://www.facebook.com/instantpersonalization/ https://www.facebook.com/instantpersonalization/), but they only get read access to some basic information that you share with "Public", and they have to follow pretty stringent guidelines in terms of how they store and use the data, and they have to show you how to opt out of the experience when you visit. This probably is not the case with you, but sometimes people find out that some browser plugins (even ones that do useful things, not just "show who viewed your profile" types) that they are using do malicious things, or discover that their credentials were compromised due to phishing or because of a password dump when they report weird things like this (although the team I'm on do try our best to prevent both of these sorts of things).
- brown9-2 15y agoIsn't it vastly more helpful for everyone involved and reading this to name those apps?
- rue 15y ago> There are plenty of other examples around the web where submitting a HTTP GET request results in an action. That doesn't mean it doesn't violate the HTTP spec. At all.
- kposehn 15y ago> That doesn't mean it doesn't violate the HTTP spec. At all. Maybe so, it just means it doesn't matter much in the grand scheme of things.
- deleted 15y ago[deleted]
- anedisi 15y agoAnd this is the best part of it. Facebook can always say the user requested it. But the sad truth is facebook learned its user to click yes on this type of things. If you give me 10 questions with all yes answers there are good chance that i will click yes on the 11th that i should click no.
- alttag 15y ago> ... clicking an up arrow on Hacker News submits a GET request For the curious, (from peeking at the source) it's a anchor tag with onclick Javascript that overrides default behavior if js is active. Before checking, I thought it might be AJAX, but it's much simpler. The script simply loads a background image with the info in the link (but doesn't add it to the DOM, so there's no reference after the function returns. The entire relevant server communication portion: // ping server var ping = new Image(); ping.src = node.href; // Where node is a ref to the clicked anchor
- speleding 15y agoBreaking the HTTP GET having no side effects is important for page speed up utilities. Those try to predict what you will want to click next and GET a bunch of resources behind your back in anticipation. Stuff would show up in your news feed that you never clicked.
- wycats 15y agoThis is precisely why those kind of page speed up tools never took off. Chrome now has a mechanism for a page author to explicitly request this behavior, but in the general case, it has never worked.
- speleding 15y agoThey still might: Have you seen Amazon Silk? http://amazonsilk.wordpress.com/2011/09/28/introducing-amazon-silk/ http://amazonsilk.wordpress.com/2011/09/28/introducing-amazo...