share

LinkedIn image thumbnail missing from shared post (shows in Post Inspector)

和自甴很熟 提交于 2019-11-29 17:24:12
My meta tags seem to be fine and the post inspector shows the image perfectly but when I try to share the post on linked, the image is always missing. https://goalenvisionpublic-test.azurewebsites.net/sv/event/7-varje-artikel-bor-for-sokmotoroptimeringens/?ppl=sade Here's how my html looks: <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# article: http://ogp.me/ns/article#"><style id="stndz-style"></style> <title>Varje artikel bör för sökmotoroptimeringens skull innehålla minst 1 av - Utbildning - GoalEnvision.com</title> <meta name="keywords" content="Vision, Mission, Affärsidé

Share image to another app using Intent in android

回眸只為那壹抹淺笑 提交于 2019-11-29 16:56:08
I want to share image and text to another app but i'm getting file format not supported when i'm using this code please help... Uri picUri = Uri.parse("http://www.planwallpaper.com/static/images/image-slider-2.jpg"); Intent shareIntent = new Intent(); shareIntent.setAction(android.content.Intent.ACTION_SEND); shareIntent.putExtra(Intent.EXTRA_TEXT, "Hi There..."); shareIntent.putExtra(android.content.Intent.EXTRA_STREAM, picUri); shareIntent.setType("*/*"); startActivity(Intent.createChooser(shareIntent, "Share Image....")); try this private class myTask extends AsyncTask<Void, Void, Bitmap> {

Intent.ACTION_SEND Whatsapp

若如初见. 提交于 2019-11-29 14:35:46
Im trying to share a mp3 file through whatsapp. It works perfectly with other apps like gmail, but it dosent works on whatsapp. Can anyone help me? Do I need to add some putExtra()? Here's my code: public void shareWithFriends(int id) { Intent share = new Intent(Intent.ACTION_SEND); share.setType("audio/mp3"); //share.putExtra(Intent.EXTRA_SUBJECT,"subject"); //Uri uri = Uri.parse("android.resource://com.igs.pokemonsoundboard/" + id); Uri uri = Uri.parse("android.resource://com.igs.pokemonsoundboard/raw/" + R.raw.pikachump3); share.putExtra(Intent.EXTRA_STREAM,uri); //share.putExtra("sms_body"

Share link and text with Android Facebook SDK 3.0

拥有回忆 提交于 2019-11-29 14:02:26
问题 Im trying to upgrade to the Facebook SDK 3.0 and have finally gotten everything to work with Request.newStatusUpdateRequest(). However my app shares/posts text along with a link. I have tried/looked into the following: Request.newStatusUpdateRequest() This does not seem to have any options for a Bundle or any other way to include a link and icon. Request.newRestRequest() Skipped this because I saw REST was being depreciated. new WebDialog.FeedDialogBuilder(_activity, session, params).build()

Powershell - Invoke-WmiMethod to create a Sharefolder remotely with full controle permission

痴心易碎 提交于 2019-11-29 12:54:58
I've been using this script to create my users folders but I just find that the remote share folder is created with ReadOnly share. My question is how can I create the share folder with $domainname\domain users with full control ? Invoke-WmiMethod -Class win32_share -name Create -ArgumentList ` @($null,"",100,"hideshare$","",e:\users\hideshare,0) -computername "DestinationSRV" I've found many threads with answers but not with the method I use. Any ideas? Try: #Username/Group to give permissions to $trustee = ([wmiclass]'Win32_trustee').psbase.CreateInstance() $trustee.Domain = "domainname"

redirect user after facebook share and publish

江枫思渺然 提交于 2019-11-29 12:53:11
How can I redirect a user to a specific URL if the user publishes and to a different URL if he skips? https://www.facebook.com/dialog/feed? app_id=123050457758183& link=https://developers.facebook.com/docs/reference/dialogs/& picture=http://fbrell.com/f8.jpg& name=Facebook%20Dialogs& caption=Reference%20Documentation& description=Using%20Dialogs%20to%20interact%20with%20users.& message=Facebook%20Dialogs%20are%20so%20easy!& redirect_uri=http://www.example.com/response The above example redirects the user to same URL whether he clicks publish or skip. I tried the example given below: <script>

How to check whether the current user has been removed from the shared workbook?

与世无争的帅哥 提交于 2019-11-29 12:04:28
I have a shared document which runs various commands upon close. This includes saving normally (if document is still shared) and saving as shared (if document was unshared). The problem arises when a person left the document open for a while then close it. The document automatically overrides the current document (if the document was made unshared, or it gives the option to overide when the .save command runs) and the data which was entered meanwhile is potentially lost. How do I check if the user is removed from the document, so that the saving section can be skipped if that's the case?

How do I access a git repo on a windows share?

不想你离开。 提交于 2019-11-29 10:53:46
问题 I want to be able to sync a work repo from my Windows 7 desktop to my Windows 7 laptop without pushing my commits to our main server. How do I do this? I can't figure out how to set up a remote path so that git can understand where it is. I generally use Git Bash for dealing with git, not the windows commandline, so the issue here is likely that I can't figure out how to write a path in Git Bash which will reference a windows share. So, say I have a repo at (windows share path): \\\

Share on Facebook - Thumbnail not showing for the first time

坚强是说给别人听的谎言 提交于 2019-11-29 10:52:14
问题 https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fwww.frcc.us%2F1197%3Fv%3D3422%26f%3D5 You should see it has thumbnail now. But every time I post a new link from my website (configured like the above example), the thumbnail won't show up for the first time. I have to refresh, and then the thumbnail shows. I should include valid og tags. When I test my links on https://developers.facebook.com/tools/debug Sometimes it gives me error saying og:image should be bigger. Then I just have to

Shared storage between multiple AWS EC2 instances

╄→гoц情女王★ 提交于 2019-11-29 10:23:42
I'm facing a problem to share a storage between multiple EC2 instances. I'm going to have to run heavy jobs so I'll need a lot of instances to do it. On one side ,I have an EBS volume attached to one server instance. On the other side I have a a worker instance. I created an AMI of this worker instance and then I created several instances copies of this AMI. There are all running on the same VPC. Basically the server instance is sending jobs and the workers are executing the job. I would like to save some log files when my workers are running the jobs, in the share storage something like: