Geoffrey Bilder
Geoffrey Bilder
As per comments above, you are bound to get lots of questions like- "do different formats get different DOIs?", "why not just use URIs, URNs, UUIDs, or hashes?" (thankfully nobody...
API call is ``` http://api.crossref.org/works/{doi} ``` So, for example: ``` http://api.crossref.org/works/10.1155/2013/530651 ``` See license section of resulting JSON See the [API documentation](http://api.crossref.org) for more details. Report problems at the [issue...
Hindawi is always pretty agile in adopting new features as they control all their own tech. Other publishers will start submitting this info soon. This hockey-stick pattern is typical for...
Nothing specific- just that scraping is always fragile and error-prone. But I do it myself in the absence of an API or metadata, so I can hardly complain. I suppose...
You can see coverage fairly easily: compare: http://api.crossref.org/members/98 http://api.crossref.org/members/78
Hmm. W had a server die and are still migrating over links. You can get same data via API like this: http://api.crossref.org/members/78/works?filter=has-license:true,has-full-text:true&rows=0 We will fix the link ASAP.
Hello. Perhaps try this [test](https://www.test-cors.org/#?client_method=GET&client_credentials=false&server_url=https%3A%2F%2Fdx.doi.org%2F10.1215%2F18752160-8193729&server_enable=true&server_status=200&server_credentials=false&server_tabs=remote&client_headers=Accept%3A%20application%2Fvnd.citationstyles.csl%2Bjson%0AOrigin%3A%20https%3A%2F%2Fwww.test-cors.org%2F) for `dx.doi.org`/`doi.org`? Or with `curl`: ``` curl -L -I 'Origin: http://www.example.com' -H 'Accept:application/vnd.citationstyles.csl+json' http://doi.org/10.1155/2013/564864 ```