privacy

Can you store facebook users' data and for how long?

烈酒焚心 提交于 2019-12-11 03:59:49
问题 Hi I am developing a facebook app that involves the use of the user's email and ID. Storing users’ info to database is a more efficient approach for the purpose of the app. I am wondering if I am allowed to do this. I have read that facebook does not allow the storage of any kind of user's data for more than 7 days, however officially facebook website does not seem to mention this. Do you have any information about this issue? 回答1: The official policies are here. One relevant paragraph is:

mailto in href: should I add rel noopener,noreferrer?

拈花ヽ惹草 提交于 2019-12-11 02:35:10
问题 Assuming I have this HTML code: <a href="mailto:me@example.org" target="_blank"></a> As far as I know, for security and privacy reason, best practices tells I have to add rel="noopener noreferrer" on every link that goes outside. Do I have to consider a mailto link as an external link? 回答1: Within a mail message, I think it won't make any difference. Referrer headers include the URL of the location of the source link - but an email message does not have a URL, so I'd expect the referrer

How do I react to a user choosing “Don't Allow” when asking for permission to access Photos?

流过昼夜 提交于 2019-12-10 16:43:52
问题 Basically, when they hit "Don't Allow", the imagePicker isn't showing the screen that gives the user the instructions to go into privacy settings and turn it on. If I kill the app and go back, the privacy setting is there. So I figured I probably need to manually do this when they touch "Don't Allow". Is there a callback for when a user allows or doesn't allow access to their photo library? I can't find it in the docs. At the very least I could dismiss the imageView. Thanks! 回答1: If this is

Facebook post data has empty privacy field

走远了吗. 提交于 2019-12-10 13:27:09
问题 We are having an issue with one facebook users account where the privacy field returned for his posts are always blank. I have tried reproducing this with my account or a test account, but in all cases the privacy is filled in. Here is a sample using the graph api tool (some fields removed for brevity): { "id": "<deleted_for_privacy>", "from": { "name": "Joe Blog", "id": "<deleted_for_privacy>" }, "story": "Joe Blog added a new photo.", "picture": "<deleted_for_privacy>", "link": "<deleted

No way to delete IndexedDB under Google Chrome

这一生的挚爱 提交于 2019-12-10 11:30:40
问题 How to delete IndexedDBs in Google Chrome? I've performed "Clear browsing data" and nothing happened. There is still bunch of IndexedDB from different domains... All other data has been removed. In Developer Tools is no option to delete IndexedDB. 回答1: According to: http://code.google.com/p/chromium/issues/detail?id=116372 You will have the option to clear indexedDB (and other client side storage options like: localstorage etc') soon... 回答2: According to http://code.google.com/p/chromium

Does google-hosted jquery helps google to track visitors?

怎甘沉沦 提交于 2019-12-10 02:49:00
问题 If you put, on your web site, one of google's services such that google analytics, google+, +1, youtube embedded video, etc... Basicaly you allow google (or other company for other services) to track the visitor of your website: Google will know who goes on your website. My question is: if you use the jquery files stored on google's server (see above), do you also allow google to track your users? < script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery

Fullcalendar: can it work with Google Calendars set to private?

随声附和 提交于 2019-12-09 22:44:13
问题 I’m working in a project in which I need to use the Google Calendar (or similar) to provide the calendar functionality. However, every time a task is added to the calendar I need it to be added to my own database too. Also, I may want to sort which data goes to each place. For example, I’m scheduling an activity for a certain day and time and with a certain title and description and this last parameter is stored only in my DB, whilst the other 3 are stored both in the Google Calendar back-end

Why does Magento use 2 cookies per session?

。_饼干妹妹 提交于 2019-12-09 08:47:57
问题 For data security and privacy reasons I want to know why Magento uses two cookies for one frontend session. All I know is that one of them is being set in Mage_Core_Model_Cookie::set(..) and the other one in Zend_Session::expireSessionCookie() , but still I can't seem to figure out what they are used for. I just can't think of any reason why one would need a second cookie for the same domain. 回答1: I'm going to call this one vestigial code. Varien relies heavily on the Zend Framework as the

Is it safe to keep sensitive data in branches that are not pushed?

核能气质少年 提交于 2019-12-08 05:23:18
问题 Suppoe I am working in git and I make a branch called sensitive and commit sensitive data (e.g. passwords, keys) in sensitive . I never commit sensitive data in master , and I never merge sensitive into master , but I do pull master into sensitive . When I git push origin master , is there any danger that I will push blobs of sensitive data to the server? 回答1: Your question is about Git but, in fact, your problem is a different one. And it has (at least) one solution. Put the sensitive data

I use several computers with different gitconfigs. How do I stop leaking my e-mail addresses to GitHub?

余生颓废 提交于 2019-12-08 00:20:44
I have a work computer where $HOME/.gitconfig has user.email to RotatingPieces@work.tld . My home computer has $HOME/.gitconfig has user.email to Rotating.P@SuperKawaiiAnimeWeb.net . And there is the virtual machine with R.Pieces@DogeMemes.net . And the laptop has... . These e-mail addresses are correct for most of the repositories cloned on these machines. But sometimes I do mix up what I am doing on what machine. Doing work stuff at home and the other way around. So when I do something in my public GitHub/BitBucket/GitLab/Whatever repository at I then commit as RotatingPieces@work.tld .