Hi Sven,

what do you recommend in this case:

ZnClient new
  url: '
http://maps.googleapis.com/maps/api/geocode/json?address=http://maps.googleapis.com/maps/api/geocode/json?address=Günsel
Ideli, 8152 Glattbrugg, Schweiz&sensor=false&sensor=false';
  contentReader: [ :entity | NeoJSONReader fromString: entity contents];
ifFail: [:ex|  ];
  get.

->>
ZnCharacterEncodingError signal: 'ASCII character expected'

It is the "ü" n "Günsel"

or:

ZnClient new
  url: '
http://maps.googleapis.com/maps/api/geocode/json?address=http://maps.googleapis.com/maps/api/geocode/json?address=Guarulhos
- São Paulo, Brasilien&sensor=false&sensor=false';
  contentReader: [ :entity | NeoJSONReader fromString: entity contents];
ifFail: [:ex|  ];
  get.

"ã"

regards
Sabine

2015-12-15 19:23 GMT+01:00 Sabine Manaa <[email protected]>:

> Hi Sven,
>
> great and thanks a lot for the immediate response. I can proceed with this!
>
> Have a nice christmas
> Sabine
>
> 2015-12-15 18:47 GMT+01:00 Sven Van Caekenberghe-2 [via Smalltalk] <[hidden
> email] <http:///user/SendEmail.jtp?type=node&node=4867174&i=0>>:
>
>> Hi,
>>
>> This will do (provided you have NeoJson loaded):
>>
>> ZnClient new
>>   url: '
>> http://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=false';
>>   contentReader: [ :entity | NeoJSONReader fromString: entity contents];
>>   get.
>>
>> Sven
>>
>> > On 15 Dec 2015, at 18:30, Sabine Manaa <[hidden email]
>> <http:///user/SendEmail.jtp?type=node&node=4867169&i=0>> wrote:
>> >
>> > I assume it is simple but I don't get it:
>> >
>> > Entering this in the web browser, I get a Json string in the web
>> browser:
>> >
>> http://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=false
>> >
>> > I want to call this from Pharo and I want to use the results within
>> pharo.
>> >
>> > Can anyone give me a hint?
>> >
>> > I was experimenting with sth like this but I was not successful:
>> >
>> > (html jQuery getJson
>> >       url:
>> > '
>> http://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=false';
>> >         onSuccess: '???';
>> > dataType: 'json') inspect
>> >
>> > Regards
>> > Sabine
>> >
>> >
>> >
>> > --
>> > View this message in context:
>> http://forum.world.st/get-json-data-from-external-url-tp4867166.html
>> > Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
>> >
>>
>>
>>
>>
>> ------------------------------
>> If you reply to this email, your message will be added to the discussion
>> below:
>>
>> http://forum.world.st/get-json-data-from-external-url-tp4867166p4867169.html
>> To start a new topic under Pharo Smalltalk Users, email [hidden email]
>> <http:///user/SendEmail.jtp?type=node&node=4867174&i=1>
>> To unsubscribe from get json data from external url, click here.
>> NAML
>> <http://forum.world.st/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>>
>
>
> ------------------------------
> View this message in context: Re: get json data from external url
> <http://forum.world.st/get-json-data-from-external-url-tp4867166p4867174.html>
>
> Sent from the Pharo Smalltalk Users mailing list archive
> <http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html> at Nabble.com.
>

Reply via email to