The documentation is limited on the Linkedin integration on Integromat: https://support.integromat.com/hc/en-us/articles/360006248613-LinkedIn
I can upload a text post just fine, but uploading an Image Post is giving me trouble.
What data is it expecting for:
file name (this seems self-explanatory but I get a Null error)
data (I tried using the image URL but this didn't work)
Thanks for the help
to get this to work, all we need to do is add the "HTTP" tool and map the image
Related
I used to embed Vimeo videos with this url format: https://vimeo.com/514607003 (only numbers). It works just fine. But some videos are in an other format and I cant embed them no matter what:
https://vimeo.com/605783608/493d2ee578
I'm getting this error on console when I try to embed it:
GET https://player.vimeo.com/video/605783608 404 (Not Found)
when I add the second Id of the video Url to the embedded Url, the error remains the same.
The answer appears to be to embed the video with a special query parameter h containing the second key:
https://player.vimeo.com/video/605783608?h=493d2ee578
This is determined by looking at Vimeo's own embed code; I did not find documentation explaining why this is.
I have a CMS that uses HeliconApe to rewrite requests with the following rule
RewriteRule ^/(.*)$ /custompage.aspx?pagename=$1 [NC,L,QSA]
I am also using an image gallery (https://cutesoft.net/ASP.NET+Image+Gallery/) to provide a simple, easy to use image gallery in a CMS and I am having trouble getting the galleries upload to work with Apes URL Rewriting.
When a user requests a page, for example /contact-us.aspx, they are served /custompage.aspx?pagename=contact-us.aspx and /custompage.aspx generates the content, sets the form action to /contact-us.aspx, and adds the gallery with ContentArea.Controls.Add(Page.LoadControl(New DotNetGallery.GalleryBrowser))
When I try to upload a file, for example logo.png, with the ASP.NET Image Galleries built in uploader I see 3 notices in the console
First there is a post to
/contact-us.aspx?UseUploadModule=Dynamic&_Namespace=DotNetGallery&_UploadID=ctl00_ContentPlaceHolder1_ctl02_UploaderImage_1436363874058_1&_UploadControlID=ctl00$ContentPlaceHolder1$ctl02$Uploader&ContextValue=!3wEWAQU1QzpcVXNlcnNcdHdpbGJlcnRcQXBwRGF0YVxMb2NhbFxUZW1wXEFqYXhVcGxvYWRlclRlbXDTV65TuH6b!1qTC8Eov!1tLoCrIFSZy43V46b1KWs!1urZg!2!2&_VFN=logo.png&_Addon=upload&_AddonGuid=d6cd8556-af6f-3785-743f-257780b216b8
If I follow the link I see a file with the following contents but I think that is because I am viewing it without posting my own data (which I dont know how to do?)
<script type='text/javascript'>if(window.parent.CurrentUpload)window.parent.CurrentUpload.UploadError('ctl00_ContentPlaceHolder1_ctl02_UploaderImage_1436361349705_1','Unable to find the uploaded file from StreamManager(sm==null).','')</script>
Then a post to
/contact-us.aspx?UseUploadModule=Dynamic&_Namespace=DotNetGallery&_UploadID=ctl00_ContentPlaceHolder1_ctl02_UploaderImage_1436363874058_1&_UploadControlID=ctl00$ContentPlaceHolder1$ctl02$Uploader&ContextValue=!3wEWAQU1QzpcVXNlcnNcdHdpbGJlcnRcQXBwRGF0YVxMb2NhbFxUZW1wXEFqYXhVcGxvYWRlclRlbXDTV65TuH6b!1qTC8Eov!1tLoCrIFSZy43V46b1KWs!1urZg!2!2&_VFN=logo.png&_Addon=verify&_AddonGuid=d6cd8556-af6f-3785-743f-257780b216b8
Which fails with a 404 and alerts http error1 :404:Not Found
If I change the form action to /custompage.aspx?pagename=contact-us.aspx then the upload works.
I have tried contacting the galleries developers but they have never responded and the live chat isn't very helpful.
So I guess my questions are what might be causing this issue, is there any way to debug proprietary controls contained in dlls, and is there some setting or code I might be missing to make everything play together nicely?
Thanks!
Tried to implement export ng-grid to csv functionality using the ng-grid-csv-export plugin. But it did not work for IE.
Next, followed this blog. It uses node.js on server to return csv from webservice, however, we don't have access there.
Then followed this post to implement the form action for IE. However, this does not work as downloadCsv function is not getting called.
Please let me know if I'm missing out on something and request you to please post an example of a URL which accepts a POST request with JSON encoded object in the payload and return a CSV.
IE doesn't support the data URI link.
I got around the issue by detecting IE and falling back to an iFrame solution and using document.execCommand
Details can be found here.
https://stackoverflow.com/a/26003382/378151
I'm getting a image path with using this code below:
string strUrl = Server.MapPath(Url.ToString());
result is bellow:
E:\\Projects\\Project\\ProjectFolder\\Ptoject\\Image\\Aliisza.jpg
I want to get path like this for share photo on facebook like this
http://wwww.domain.com/Image/Aliisza.jpg
which can help me to hare Image on facebool with facebook app im doing this code in c# please let me know how can i can make this Image path like I want to hit on facebook for share. give you some sample of code to do this task done. Hope some buddy have a solution to do this task and hit image Url like i want.
Thank you
First of all ServerMap path is working fine as expected, it will give rootlevel path.
To get url, you need to append it to the domain name.
What best you can do is put the value in config file and use it.
Also you can try
Directory.GetParent(fileName).FullName;
To get Parent folder name.
This is concept to decide what approach you choose.
How to post a comment on image or video, using the graph api?
And how to post an image, using the graph api?
I am trying to code like this, using this URL but it's not working properly:
https://graph.facebook.com/page_id/feed?acess_token=tokengenerated&method=post&picture=Image/photo1.bmp
Does it require to add # character ?
If I add it, it still doesn't work properly:
&picture=#Image/photo1.bmp
It gives me an error stating that the picture URL is not properly formatted.
https://graph.facebook.com/page_id/feed?access_token=tokengenerated&method=post&picture=Image/photo1.bmp
Might it be a spelling mistake:
acess => access