sharing

How long is Facebook caching the sharing thumbnails?

天涯浪子 提交于 2019-12-01 03:19:34
How long is Facebook caching the sharing thumbnails? I've added a custom thumbnail for my page using: <meta property="og:image" content="/path/to/my/image" /> But on pages my previous image is displayed => it is cached somewhere on FB servers. Any ideas how to flush that cache or how long does it take once FB loads a new image? Check the page with Facebook URL Linter, it seems to reload the thumbnails images in the cache. http://developers.facebook.com/tools/lint azhure Facebook images are cached on a different servers on a different location. According to what I have read, it will take 3 to 5

Problem with WCF and multiple namespaces - sharing object types across multiple service references

帅比萌擦擦* 提交于 2019-12-01 03:04:21
问题 i have two web services. One with user functionality, one with admin functionality. Both services effectively work with the same object types, for instance: AdminService provides functionality for deleting/modifying Customer objects UserService provides functionality for listing/reading Customer objects Now in the client i have two service references, Webservices.Admin and Webservices.User. If i use the UserService to retrieve Customer objects, i cannot manipulate those via the AdminService,

Firebase Project Invitation

*爱你&永不变心* 提交于 2019-12-01 02:33:02
问题 I've a project using Firebase, and I need to add an owner to the project. This is how I added him: Opened the project in the Firebase console. Clicked on the settings wheel next to the project name, and selected permissions. Firebase launches a new page "IAM & Admin". Pressed on Add, which shows a popup. Entered the user gmail address, which auto completes so it could never be a wrong email. Selected the role as OWNER. Pressed on ADD button. Now it shows me the user in the permissions list,

Share photo to Instagram from my iOS App [duplicate]

為{幸葍}努か 提交于 2019-12-01 00:09:13
This question already has an answer here: How to share an image on Instagram in iOS? 17 answers I have been searching a way to post photo to Instagram from a iOS app I am developing. But seeing some links , it seems to be they don't support write access using their API. So, Is it possible to share photo to Instagram from iOS by some API or Instagram API ? If possible can anybody please suggest me a tutorial or documentation to do that ? Their api says this... "At this time, uploading via the API is not possible. We made a conscious choice not to add this for the following reasons: Instagram is

How long is Facebook caching the sharing thumbnails?

青春壹個敷衍的年華 提交于 2019-11-30 23:29:47
问题 How long is Facebook caching the sharing thumbnails? I've added a custom thumbnail for my page using: <meta property="og:image" content="/path/to/my/image" /> But on pages my previous image is displayed => it is cached somewhere on FB servers. Any ideas how to flush that cache or how long does it take once FB loads a new image? 回答1: Check the page with Facebook URL Linter, it seems to reload the thumbnails images in the cache. http://developers.facebook.com/tools/lint 回答2: Facebook images are

Is it possible to share audio input (Microphone) stream in Android?

若如初见. 提交于 2019-11-30 21:18:17
I am writing an application that runs as a background service recording and analyzing audio recorded from the microphone. When my app is running I can't use other apps that use the microphone (e.g. phone, voice recording, etc...). My question is - Is there a way to share the microphone stream in Android? Maybe by using the NDK? If not, is it possible to receive an indication (e.g. a BroadcastIntent) that another app is requiring the microphone? Simple Answer would be "NO" , This is just because Audio Recording Method is synchronized. So Two or more resources can not attempt it simantenously.

Share photo to Instagram from my iOS App [duplicate]

对着背影说爱祢 提交于 2019-11-30 18:35:44
问题 This question already has answers here : How to share an image on Instagram in iOS? (17 answers) Closed 4 years ago . I have been searching a way to post photo to Instagram from a iOS app I am developing. But seeing some links , it seems to be they don't support write access using their API. So, Is it possible to share photo to Instagram from iOS by some API or Instagram API ? If possible can anybody please suggest me a tutorial or documentation to do that ? Their api says this... "At this

UIActivityViewController share only text

[亡魂溺海] 提交于 2019-11-30 14:01:33
I want to share just simple text using UIActivityViewController I am using swift, with xcode 6.3 The code is very simple, work great for photos, but not just text, I don't want to include any web URL with the objectsToShare, just clean text Here is the code: var objectsToShare: ["some text to share"]! let activityVC = UIActivityViewController(activityItems: objectsToShare, applicationActivities: nil) //handler for completed task activityVC.completionHandler = {(activityType, completed:Bool) in if !completed { println("cancelled") return } reportCompleted() //report to server it's done. } /

Sharing Content On FaceBook Android

心已入冬 提交于 2019-11-30 12:21:09
问题 I use intent and Action.SEND for sharing my custom message on social networks like WhatsApp , twitter, Facebook and GMail. Everything is ok on Gmail and other applications except Facebook! How can I customize my code to share something on Facebook as well? I do share on Facebook using Facebook SDK with no problem, but I want to do it using an intent. this is what I use: Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_TEXT, knowTitle

FBSDK (New Facebook SDK 4.0) Implementation is not working for Login with Facebook

独自空忆成欢 提交于 2019-11-30 11:26:10
I am using this following block which is mentioned in Facebook Developer . But when my App callbacks from Browser then it is always returning Cancelled result. FBSDKLoginManager *login = [[FBSDKLoginManager alloc] init]; [login logInWithReadPermissions:@[@"email"] handler:^(FBSDKLoginManagerLoginResult *result, NSError *error) { if (error) { // Process error } else if (result.isCancelled) { // Handle cancellations } else { // If you ask for multiple permissions at once, you // should check if specific permissions missing if ([result.grantedPermissions containsObject:@"email"]) { // Do work } }