jsonp 1.0.6 copy "jsonp: ^1.0.6" to clipboard
jsonp: ^1.0.6 copied to clipboard

outdatedDart 1 only

Read from jsonp enabled websites

Dart JSONP #

JSONP handler for Dartlang. Allows you to make individual and multiple requests, as well as providing some support for automatically converting the responses to Dart classes.

Usage #

This library handles requesting a URL and handling the subsequent callback. To achieve this a URL must be provided which can be updated with a callback method name which is determined by the library. There are two ways to do this.

The easiest way is to provide a complete URL which includes a callback query parameter. The query parameter value which can be replaced by the callback name has the placeholder value ?. The library is not smart about this, and will replace all query parameters which have that value.

jsonp.fetch( uri: "http://example.com/rest/object/1?callback=?" );

If you need more control over the creation of the URL, then you can take the more advanced approach. This means providing a function which takes a String (the callback method name) and returns a string (the request URL including the callback parameter). As you define the function, this approach allows total control over the constructed URL.

jsonp.fetch( uriGenerator: (String callback) =>
    "http://example.com/rest/object/1?callback=$callback" );

Single Requests #

The fetch method can be used to make a single request.

When you use fetch to request a URL a future will be returned. This future will complete with the response from the JSONP request.

import "dart:async";
import "package:jsonp/jsonp.dart" as jsonp;

// In this example the returned json data would be:
// { "data": "some text" }
Future<dynamic> result = jsonp.fetch(
    uri: "http://example.com/rest/object/1?callback=?"
  );

result.then((var proxy) {
  print(proxy['data']);
});

Type Conversion

The proxy objects can be time consuming to handle, as you don't get things like autocompletion for proxy fields. Automatically converting the proxy objects to classes is quite easy, but depends on the class having a fromProxy method:

class ExampleData {
  var data;

  static fromProxy(var proxy) {
    this.data = proxy['data'];
  }
}

jsonp.fetch(
    uri: "http://example.com/rest/object/1?callback=?",
    Type: ExampleData
  )
  .then((ExampleData object) => print(object.data));

Many Requests #

The fetchMany and disposeMany methods can be used to handle many requests.

The fetchMany method will return a named Stream which receives individual results. This Stream is identified by the name parameter in the request, sharing single Streams across multiple requests. This means you only need to set up result handling code once, as all results will be handled by the same Stream.

By default the Stream provides the response from the JSONP request.

Stream<dynamic> object_stream = jsonp.fetchMany(
    "object", uri: "http://example.com/rest/object/1?callback=?"
  );

// The uri is optional when making a fetchMany request
// as you may just want to configure the Stream
Stream<dynamic> user_stream = jsonp.fetchMany("user");

object_stream.forEach(
    (var data) => print("Received object!")
  );
user_stream.forEach(
    (var data) => print("Received user!")
  );

// You just need to refer to the stream by name to make further requests
jsonp.fetchMany(
    "object", uri: "http://example.com/rest/object/2?callback=?"
  );
jsonp.fetchMany(
    "object", uri: "http://example.com/rest/object/3?callback=?"
  );
jsonp.fetchMany(
    "object", uri: "http://example.com/rest/object/4?callback=?"
  );
jsonp.fetchMany(
    "user", uri: "http://example.com/rest/user/1?callback=?"
  );

// Release the stream if you don't need it any more
jsonp.disposeMany("object");

Type Conversion

The automatic type conversion is also available. Each call to fetchMany can choose to set a type which will alter the returned stream (basically, you don't need to specify the type unless you actually use the stream).

Stream<ExampleData> example_stream = jsonp.fetchMany(
    "object", type: ExampleData
  );

example_stream.forEach(
    (ExampleData object) => print("Received ${object.data}")
  );

// No need for the type when you don't use the returned stream
jsonp.fetchMany(
    "object", uri: "http://example.com/rest/object/1?callback=?"
  );
jsonp.fetchMany(
    "object", uri: "http://example.com/rest/object/2?callback=?"
  );
jsonp.fetchMany(
    "object", uri: "http://example.com/rest/object/3?callback=?"
  );

Examples #

A pre built version of the example can be viewed here. It has been converted to javascript.

Compiling #

An example of using the library can be found in the examples folder. This example uses the web_ui package to handle displaying the returned content. This means it must be compiled.

To get the required packages you may have to run pub install in the root of the library. Once you have the packages installed, you can then run the build script from within the example folder (right click run in the editor is fine).

After building you can view the example at out/example.html in Dartium.

General Note #

This library is not required because you can make JSONP requests very easily with pure Dart. This library does reduce the work required to make JSONP requests.

Using javascript has become significantly easier since this was originally written. To perform a JSONP request without using this library is as easy as:

import 'dart:html';
import 'dart:js';

context['callbackMethod'] = (JsObject response) {
  // Do something with the response object. The JsObject can be treated like a dictionary.
}

document.body.children.add(
    new Element.tag('script')
      ..src = 'https://twitter.com/status/user_timeline/sethladd?format=json&callback=callbackMethod'
  );

To get a Future for this do the following:

import 'dart:async';
import 'dart:html';
import 'dart:js';

Completer callbackCompleter = new Completer();

context['callbackMethod'] = (response) {
  callbackCompleter.complete(response);
}

document.body.children.add(
    new Element.tag('script')
      ..src = 'https://twitter.com/status/user_timeline/sethladd?format=json&callback=callbackMethod'
  );
callbackCompleter.future.then((JsObject response) {
  // Do something with the response object. The JsObject can be treated like a dictionary.
});

The javascript method does not break after the first use, so you can repeatedly call it:

import 'dart:async';
import 'dart:html';
import 'dart:js';

Completer callbackCompleter;
Element scriptTag;

context['callbackMethod'] = (response) {
  scriptTag.remove();
  callbackCompleter.complete(response);
}

Future update() {
  callbackCompleter = new Completer();
  scriptTag = new Element.tag('script')
        ..src = 'https://twitter.com/status/user_timeline/sethladd?format=json&callback=callbackMethod';

  document.body.children.add(scriptTag);

  return callbackCompleter.future;
}

void repeat() {
  update().then((JsObject response) {
    // Do something with the response object. The JsObject can be treated like a dictionary.

    new Future(new Duration(seconds: 5), repeat);
  });
}

There is an example of using JSONP here with source code.

You can read more about Dart Javascript interoperability here.

2
likes
10
pub points
21%
popularity

Publisher

unverified uploader

Read from jsonp enabled websites

Repository (GitHub)
View/report issues

License

LGPL-3.0 (LICENSE)

More

Packages that depend on jsonp