privacy

Get if my app is authorized to use facebook [iOS 6, FB SDK 3.2]

独自空忆成欢 提交于 2019-12-12 09:10:34
问题 how can i know is my app is authorized by user to use Facebook? You can enable or disable it in "Settings -> Privacy -> Facebook". I have to get this state. I'm using Facebook 3.2 Thank you all! 回答1: You can use the ACAccountStore to get the Facebook account(if it is available) and check if the access is granted: ACAccountStore *accountStore = [[ACAccountStore alloc] init]; ACAccountType *accountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierFacebook]; if

Crash on iOS > TCCAccessRequest_block_invoke_2.8

不问归期 提交于 2019-12-12 08:26:22
问题 I've got an error in my app (iOS 8 to iOS 11) : Crashed: com.apple.root.default-qos 0 libsystem_kernel.dylib 0x1839a00a8 __abort_with_payload + 8 1 libsystem_kernel.dylib 0x18399b100 abort_with_payload_wrapper_internal + 100 2 libsystem_kernel.dylib 0x18399b12c system_set_sfi_window + 10 3 TCC 0x1868ed99c __TCCAccessRequest_block_invoke_2.85 + 222 4 TCC 0x1868ed8bc __CRASHING_DUE_TO_PRIVACY_VIOLATION__ + 706 5 TCC 0x1868f113c __tccd_send_block_invoke + 316 6 libxpc.dylib 0x183aeda0c _xpc

Like button and privacy concern

不羁的心 提交于 2019-12-12 08:07:07
问题 I'm operating a website within the EU and nowadays there's no way without those social buttons all around (according to "them" "up there"). Recently there's a concern about the legality of this in the EU, notably the collection of user information sent to the US servers without explicit user consent. There was a German report on golem.de, along with advice from a lawyer (sorry, German only) that it would be sufficient if the integrated like button would not automatically trigger an

How can https://www.whatismyip.com/ see my LAN IP address? [closed]

时光毁灭记忆、已成空白 提交于 2019-12-12 06:39:11
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 10 months ago . The website is showing my correct internal LAN IP address. https://www.whatismyip.com/ It does not work in Safari. I do not suspect this is an XKCD #628 attack. How is this website implementing this? 回答1: This is because of WebRTC feature.WebRTC feature will leak your IP address even if you are behind a proxy

securing a Google Apps Script linked to an authorized trigger so others can edit

删除回忆录丶 提交于 2019-12-11 09:13:36
问题 I am pretty sure my understanding is correct but since I cannot find any Google documentation that explicitly highlights this I wanted to ask here. Per https://developers.google.com/apps-script/guides/triggers/installable: Installable triggers always run under the account of the person who created them. And we know that when you create a trigger it will ask to authorize for all the scopes the script uses. Then, that means that anyone with edit access to the script could leverage the Google

How to Change text in NSLocationUsageDescription

随声附和 提交于 2019-12-11 08:34:23
问题 HI all I am currently trying to change the text in NSLocationUsageDescription. Currently it says: MyAPP "would like to use your current location" I would like to change the text "would like to use your current location" Does anyone have the steps to do this? Currently In the plist I have custom text in the string value field but it doesn't change "would like to use your current location" Any help greatly appreciated.!! 回答1: (For iOS 6 +.) In the info.plist add the key "Privacy - Location

How to set SessionDefaultAudience for facebook in Android

我与影子孤独终老i 提交于 2019-12-11 07:08:03
问题 I have searched a lot for past two days and I was not successful. I am following the Authenticate-Facebook Developers link for setting up the Facebook native login. I add the following code to SplashFragment.java : authButton = (LoginButton) view.findViewById(R.id.fb_logIn_btn); authButton.setPublishPermissions(PERMISSION); authButton.setDefaultAudience(SessionDefaultAudience.ONLY_ME); But this does not work. In my app, I want to alert the user to enter the privacy mode(

Facebook message API privacy settings, is the message shown in the timeline?

孤街醉人 提交于 2019-12-11 06:39:37
问题 Currently I'm working on a simple Facebook App which posts message to boards of different users. I got this to work, but we don't want to show this message in the timeline. Of course the best solution for this is sending a private message, but for my understanding the API is currently not able to do that. So my question is: following this https://developers.facebook.com/docs/reference/api/post/ API description should I use the NO_FRIEND flag in the privacy setting to prevent it for showing in

Facebook scores blocked by “only me” visibility

拥有回忆 提交于 2019-12-11 05:38:40
问题 I have a game with highscores and I use the fb-score api to generate a friend leaderboard. One problem though ... to save a score for a fb-user, the app has to "post data for the user" ... in this case, the score-data. But the user can choose to mark this "posting" permission as visible for "only me" instead of global or friends. Which is something a lot of users will do since it sounds like something that would aid their privacy. That however means that the score of ... lets say USER A ...

Can we rely on Hyperledger Composer ACL for privacy?

£可爱£侵袭症+ 提交于 2019-12-11 05:27:23
问题 Composer provides some pretty good ACL features, with enough granularity to prevent unauthorized access based on complex business logic. I understand that using composer's APIs, an unauthorized user will not be able to read data. However, what if the user uses Fabric's APIs? How does composer implement their ACL at the Fabric level? Is a business network sharing a single channel? In which case, does it mean that any participant/node can look at the block manually and see private data? So my