We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fd99df9 + 8dac019 commit 25992a0Copy full SHA for 25992a0
plotly/plotly_aux/makecall.m
@@ -14,16 +14,16 @@
14
15
platform = 'MATLAB';
16
17
- url = [domain '/clientresp'];
18
- payload = struct( ...
+ url = [domain '/clientresp/'];
+
19
+ st = webwrite( ...
20
+ url, ...
21
'platform',platform, ...
22
'version',plotly_version, ...
- 'args',args, ...
23
+ 'args',m2json(args), ...
24
'un',un, ...
25
'key',key, ...
26
'origin',origin, ...
- 'kwargs',kwargs ...
27
+ 'kwargs',m2json(kwargs) ...
28
);
-
- st = webwrite(url, payload);
29
end
0 commit comments