Created
April 6, 2016 21:35
-
-
Save MasonM/07a57c7c112ab288cf27538c9b67de2a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
curl -d @- https://ws.isiknowledge.com/cps/xrpc << END | |
<?xml version="1.0" encoding="UTF-8" ?> | |
<request xmlns="http://www.isinet.com/xrpc42" | |
src="app.id=PartnerApp,env.id=PartnerAppEnv,partner.email=EmailAddress"> | |
<fn name="LinksAMR.retrieve"> | |
<list> | |
<!-- WHO'S REQUESTING --> | |
<map> | |
</map> | |
<!-- WHAT'S REQUESTED --> | |
<map> | |
<list name="WOS"> | |
<val>timesCited</val> | |
<val>ut</val> | |
<val>doi</val> | |
<val>pmid</val> | |
<val>title</val> | |
<val>isbn</val> | |
<val>issn</val> | |
<val>issue</val> | |
<val>vol</val> | |
<val>year</val> | |
<val>tpages</val> | |
<val>sourceURL</val> | |
<val>citingArticlesURL</val> | |
<val>relatedRecordsURL</val> | |
</list> | |
</map> <!--end "return_data" --> | |
<!-- LOOKUP DATA --> | |
<map> | |
<!-- QUERY "cite_1" --> | |
<map name="cite_1"> | |
<val name="doi">10.1172/JCI72227</val> | |
</map> | |
</map> | |
</list> | |
</fn> | |
</request> | |
END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" ?> | |
<response xmlns="http://www.isinet.com/xrpc42" src="app.id=PartnerApp, env.id=PartnerAppEnv, partner.email=EmailAddress"> | |
<fn name="LinksAMR.retrieve" rc="Server.authentication"> | |
<error code="Server.authentication">No matches returned for IP 45.79.162.28</error> | |
</fn> | |
</response> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment