This file contains hidden or 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
{ | |
"kind": "books#volumes", | |
"totalItems": 1, | |
"items": [ | |
{ | |
"kind": "books#volume", | |
"id": "pbR9tgAACAAJ", | |
"etag": "MiROYnWU3Cs", | |
"selfLink": "https://www.googleapis.com/books/v1/volumes/pbR9tgAACAAJ", | |
"volumeInfo": { |
This file contains hidden or 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
JSONGetElement ( $json ; "name" ) | |
// → "The Signal and the Noise" |
This file contains hidden or 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"?> | |
<fmxmlsnippet type="FMObjectList"> | |
<Step enable="True" id="89" name="# (comment)"> | |
<Text>PATCH Proposed By L.D. and E.M.</Text> | |
</Step> | |
<Step enable="True" id="89" name="# (comment)"> | |
<Text>--------------------------------------------------------------------------------------------</Text> | |
</Step> | |
<Step enable="True" id="89" name="# (comment)"/> | |
<Step enable="True" id="89" name="# (comment)"> |
This file contains hidden or 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
Set Variable [ $json ; Value: JSONGetElement ( $response ; "items[0]" ) ] | |
// → $json |
This file contains hidden or 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
Set Field [ Books::title ; JSONGetElement ( $response ; "items[0]" ) ] | |
Set Field [ Books::authors ; JSONGetElement ( $json ; "volumeInfo.authors[0]" ) ] |
This file contains hidden or 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
Insert from URL [Select; No dialog; $json ; "https://www.googleapis.com/books/v1/volumes?q=isbn:"& Books::ISBN ] |
This file contains hidden or 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
Set Field [ Books::title ; JSONGetElement ( $volumeInfo ; "title" ) ] | |
Set Field [ Books::authors ; JSONGetElement ( $volumeInfo ; "authors" ) ] | |
Set Field [ Books::publishedDate ; JSONGetElement ( $volumeInfo ; "publishedData" ) ] | |
Set Field [ Books::publisher ; JSONGetElement ( $volumeInfo ; "publisher" ) ] | |
Set Field [ Books::language ; JSONGetElement ( $volumeInfo ; "language" ) ] | |
Set Field [ Books::description ; JSONGetElement ( $volumeInfo ; "description" ) ] |
This file contains hidden or 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
https:// {{host}} / {{route}} / {{endpoint}} ? {{parameter}} = {{value}} |
This file contains hidden or 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
https://www.googleapis.com/books/v1/volumes?q=isbn:"& Books::ISBN |
OlderNewer