Recent content by bookworm3000

  1. B

    XF 2.2 API Get requests working but not Post

    Ok i figured out the problem, I think my issue was that I was sending the request with http when I have cloudflare redirecting to https, and i guess that breaks post requests or something :0 so i just changed 'http://website.com/api/' to 'https://website.com/api/'
  2. B

    XF 2.2 API Get requests working but not Post

    Hello I am trying to update my profile via the API while using Node.js with Axios. Here is my code, the header seems to be working just find and Axios objects seems to be creating properly. const axios = require('axios'); const qs = require('qs'); const website = axios.create({ baseURL...
Top Bottom