Skip to content

Commit dbbd8dd

Browse files
committed
Added additional notes for how to use the formatter #33
1 parent c9a4b54 commit dbbd8dd

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

README.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,18 @@ To use the `JsonpMediaTypeFormatter`, add the following code to your configurati
1111

1212
You can specify a `MediaTypeFormatter` and callback parameter name as optional parameters. By default, the `JsonpMediaTypeFormatter` will use the `config.Formatters.JsonFormatter` and `callback` as default values.
1313

14-
You should specify `text/javascript` as the media type to accept. If you leave this out, the client may receive `application/json`. The `JsonpMediaTypeFormatter` will match the specified callback parameter name from the request URI, e.g. `?callback=?`.
14+
You should specify `text/javascript` the media type to accept in the request's `Accept` header. If you leave this out, the client may receive `application/json` as the default `JsonMediaTypeFormatter` will likely handle the request. In other words, the `Accept` header is used as the means to signal Web API to use the `JsonpMediaTypeFormatter`. For example, in JQuery, you would write:
15+
16+
``` javascript
17+
$.ajax({
18+
type: "GET",
19+
url: "/jsonp-endpoint?callback=callme",
20+
contentType: "text/javascript",
21+
// ...
22+
});
23+
```
24+
25+
The `JsonpMediaTypeFormatter` will then match the specified callback parameter name from the request URI, e.g. `?callback=?`.
1526

1627
If you are using traditional routing, update your Default ASP.NET Web API route in `/App_Start/WebApiConfig.cs`:
1728

0 commit comments

Comments
 (0)