apifm-webapi 24.11.6 → 24.11.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +4 -1
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -866,7 +866,10 @@ module.exports = {
|
|
|
866
866
|
})
|
|
867
867
|
},
|
|
868
868
|
wxaQrcode: (data) => {
|
|
869
|
-
return request('/qrcode/wxa/unlimit', true, 'post', data)
|
|
869
|
+
return request('https://oss.apifm.com/' + subDomain + '/qrcode/wxa/unlimit', true, 'post', data)
|
|
870
|
+
},
|
|
871
|
+
commonQrcode: (data) => {
|
|
872
|
+
return request('https://oss.apifm.com/' + subDomain + '/qrcode/content', true, 'post', data)
|
|
870
873
|
},
|
|
871
874
|
uploadFile: (tempFilePath, expireHours) => {
|
|
872
875
|
const uploadUrl = API_BASE_URL + '/' + subDomain + '/dfs/upload/file'
|
package/package.json
CHANGED