summaryrefslogtreecommitdiff
path: root/main.c
blob: 97be7a1ceef46959d5f01d11275b4504985987f2 (plain)
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
#include <string.h>
#include <stdio.h>
#include <shopify.h>

int main(int argc, char *argv[])
{
	const size_t app_dir_len = strlen(APP_DIR);
	static const char *scopes_rel = "/shopify.app.toml";
	char scopes[app_dir_len + strlen(scopes_rel) + 1];
	sprintf(scopes, "%s%s", APP_DIR, scopes_rel);
	static const char *index_rel = "/frontend/index.html";
	char index[app_dir_len + strlen(index_rel) + 1];
	sprintf(index, "%s%s", APP_DIR, index_rel);
	static const char *js_dir_rel = "/frontend/build";
	char js_dir[app_dir_len + strlen(js_dir_rel) + 1];
	sprintf(js_dir, "%s%s", APP_DIR, js_dir_rel);
	shopify_app(API_KEY, API_SECRET_KEY, APP_URL, "/auth", APP_ID, scopes,
			index, js_dir, (struct shopify_api[]){
			{
				"/products",
				"GET",
				shopify_graphql,
				"{"\
				"  productCreate() {"\
				"    product {"\
				"      id"\
				"    }"\
				"  }"\
				"}"
			},
			{}
		}
	);
	return 0;
}