File size: 241 Bytes
1e92f2d
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import wpcom from 'wpcom';
import proxyRequest from 'wpcom-proxy-request';

export async function createClient() {
	const client = wpcom( proxyRequest );
	await client.request( { metaAPI: { accessAllUsersBlogs: true } } );
	return client;
}