I tried this URL and it works fine...
http://api.flickr.com/services/feeds/photos_public.gne?per_page=6&jsoncallback=?
...almost. It is set to "per_page=6" but it don't listen to it. What's wrong?
You have an extra question mark at the end. Can you remove the last parameter?
It seems like this URL does not accept any limit.
Unfortunately according to the API this isn't supported
http://www.flickr.com/services/feeds/docs/groups_pool/
I was in need of it as well
Related
I'm trying to create a fat record in api-platform, normally, it will have to put IRI, but I don't want to (I can't.).
My question, is it possible to do something like that?
Instead of that:
Do it like this:
Thank you in advance for your future help.Thank you in advance for your future help,
You can use the allow_plain_identifiers but this is highly discouraged. See this comment for the rationale: https://github.com/api-platform/core/pull/2022#issuecomment-398851861
It seems that filtering data, eg. creating a segment, or defining a funnel step, cannot use the 'Current URL' field. Or at least, it doesn't seem to work for me at all.
Am I missing something? Is this just broken?
Kind Regards,
Michael
Here are some docs that might help you. You can also play around with the Demo Event Source Group and create a segment like so:
Try leaving out the https://www.
That sometimes seems to help.
Hi I am using clickatell REST api and getting following error:
{"messages":[],"error":"ScheduledDeliveryTime format is incorrect. - "}"
I am using correct format "yyyy-MM-dd'T'HH:mm:ssZ"
please help to fix this issue.
thanks
You need to do exactly like in documentation
--> 2018-01-25T18:17:20+0200
+0200 is your timezone
And don't forget to concatenate 'T' letter in the middle
If you don't intend to schedule it for a later time, remove that property(name-value pair) from your json.
That worked for me for now but please do post the real answer if you found it.
I am looking for a solution for 3 days now, but cannot find it ...
I have this page with build in "send-button" to Facebook.
http://www.architectura.be/nieuwsdetail_new_fb_1.asp?id_tekst=2570
I have my og tags specified, but it is not working. (random image is showing, random title, ...)
Any help would be enormously apreciated !
Thanks
Andy is right. Let me put it another way; Facebook does not read all of the page that you specify (2570), it reads the og:url and then it looks for metadata at that address (2586); because that is meant to be the "canonical" or "reference" version of the page.
I don't know what you intend, so I can't tell you how to fix that.
But I will also point out that the HTML coding on your page is extremely bad and even when you get the URL sorted out, it's possible that Facebook will be unable to read the page correctly.
David
There is something wrong, so here is a list of possibilities:
locale: Do you really need to set a locale?.
type: Try to use the right type. Maybe use 'article' or something like that instead of using 'movie'.
url: The facebook crawler is checking the page with the url you set, 'http://...?id_tekst=2586'. When i look at the source code on that page, there are no opengraph parameters. You´re setting them on page 'http://...?id_tekst=2570'
image: Use an absolute path to your image, e.g. 'http://domain/image.jpg'
fb:admins: USER_ID has to be a valid userId or username (optional)
Hope that helps a little bit?
I,m using Builder::XmlMarkup to create xml. I want to create a tag without content because the api force me to create this.
If I use a blog
xml.tag do
end
I get what i need
<tag></tag>
but I want it shorter
xml.mytag
this gives me
<mytag/>
but i want
<mytag></mytag>
what do I have to pass as option.
regards Kai
Just pass empty string as a parameter. xml.mytag('')
Why do you want <mytag></mytag> instead of <mytag/>? Since the output is XML, downstream applications should not know or care about the difference.
According to the Infoset spec (Appendix D point 7), "The difference between the two forms of an empty element: <foo/> and <foo></foo>" is not represented in the XML Information Set.
This doesn't answer your "how" question, but if you discover that you actually don't need to do what you're trying to do, it may save you from a difficult and unnecessary wild goose chase.
ok empty string is nice, another one-line-way is empty block I found out.
xml.mytag{}