wip still getting 400s, but closer

This commit is contained in:
Kyle McCormick
2020-02-13 15:15:35 -05:00
parent 071c666add
commit ee72aa5caf
3 changed files with 7 additions and 7 deletions

9
package-lock.json generated
View File

@@ -1180,7 +1180,7 @@
"form-urlencoded": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/form-urlencoded/-/form-urlencoded-4.1.1.tgz",
"integrity": "sha512-q4SOWDgKw2Mmec2HNYzTNr/7ZXecEkO9QOwzpzx6q9HR+z+no6CsDFpAELdiyk7G3fUV5WvKy57utZxKgleqhg=="
"integrity": "sha1-Nv/xWCFoRT1XrYnVUAhbPJ3pv4I="
}
}
},
@@ -14584,7 +14584,7 @@
"pubsub-js": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/pubsub-js/-/pubsub-js-1.7.0.tgz",
"integrity": "sha512-Pb68P9qFZxnvDipHMuj9oT1FoIgBcXJ9C9eWdHCLZAnulaUoJ3+Y87RhGMYilWpun6DMWVmvK70T4RP4drZMSA=="
"integrity": "sha1-7Kl/mkIXvvYrLTqqFVIAUmDMLkk="
},
"pump": {
"version": "3.0.0",
@@ -14715,8 +14715,7 @@
"querystring": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz",
"integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=",
"dev": true
"integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA="
},
"querystring-es3": {
"version": "0.2.1",
@@ -14931,7 +14930,7 @@
"react-intl": {
"version": "2.9.0",
"resolved": "https://registry.npmjs.org/react-intl/-/react-intl-2.9.0.tgz",
"integrity": "sha512-27jnDlb/d2A7mSJwrbOBnUgD+rPep+abmoJE511Tf8BnoONIAUehy/U1zZCHGO17mnOwMWxqN4qC0nW11cD6rA==",
"integrity": "sha1-yXxdF9RxjxV1/b1adp+WAYo7GEM=",
"requires": {
"hoist-non-react-statics": "^3.3.0",
"intl-format-cache": "^2.0.5",

View File

@@ -55,6 +55,7 @@
"memoize-one": "5.1.1",
"newrelic": "5.13.1",
"prop-types": "15.7.2",
"querystring": "0.2.0",
"react": "16.10.2",
"react-dom": "16.10.2",
"react-redux": "7.1.3",

View File

@@ -1,16 +1,16 @@
import { getConfig } from '@edx/frontend-platform';
import { getHttpClient } from '@edx/frontend-platform/auth';
import querystring from "querystring";
export default async function postNewUser(registrationInformation) {
const requestConfig = {
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
};
console.log('rickie is fucken baller');
const { data } = await getHttpClient()
.post(
`${getConfig().LMS_BASE_URL}/user_api/v1/account/registration/`,
registrationInformation,
querystring.stringify(registrationInformation),
requestConfig,
)
.catch((e) => {