1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#include <stdio.h>
#include <string.h>
#include <emscripten/fetch.h>
static void handle_success(emscripten_fetch_t *fetch)
{
printf("Finished downloading %llu bytes from URL %s.\n",
fetch->numBytes, fetch->url);
emscripten_fetch_close(fetch);
}
static void handle_error(emscripten_fetch_t *fetch)
{
printf("Downloading %s failed, HTTP failure status code: %d.\n",
fetch->url, fetch->status);
emscripten_fetch_close(fetch);
}
void index_getproducts(const char *token, const char *app_url)
{
emscripten_fetch_attr_t attr;
emscripten_fetch_attr_init(&attr);
strcpy(attr.requestMethod, "GET");
attr.attributes = EMSCRIPTEN_FETCH_LOAD_TO_MEMORY;
attr.onsuccess = handle_success;
attr.onerror = handle_error;
static const char *schema = "Bearer ";
char auth[strlen(schema) + strlen(token) + 1];
sprintf(auth, "%s%s", schema, token);
attr.requestHeaders = (const char *[]){ "Authorization", auth, NULL };
static const char *path = "/products";
char url[strlen(app_url) + strlen(path) + 1];
sprintf(url, "%s%s", app_url, path);
emscripten_fetch(&attr, url);
}
int main(int argc, char *argv[])
{
EM_ASM(getToken());
return 0;
}
|