Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@ovos-media/capacitor-community-http
Advanced tools
A native HTTP plugin for CORS-free requests and file transfers
Capacitor community plugin for native HTTP requests, file download/uploads, and cookie management.
Maintainer | GitHub | Social | Sponsoring Company |
---|---|---|---|
Max Lynch | mlynch | @maxlynch | Ionic |
Maintenance Status: Actively Maintained
npm install @capacitor-community/http
npx cap sync
On iOS, no further steps are needed.
On Android, register the plugin in your main activity:
import com.getcapacitor.plugin.http.Http;
public class MainActivity extends BridgeActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Initializes the Bridge
this.init(savedInstanceState, new ArrayList<Class<? extends Plugin>>() {{
// Additional plugins you've installed go here
// Ex: add(TotallyAwesomePlugin.class);
add(Http.class);
}});
}
}
No configuration required for this plugin
To use the plugin while fully supporting the web version, import and use it like this:
// Must import the package once to make sure the web support initializes
import '@capacitor-community/http';
import { Plugins } from '@capacitor/core';
// Example of a GET request
const doGet = () => {
// Destructure as close to usage as possible for web plugin to work correctly
// when running in the browser
const { Http } = Plugins;
const ret = await Http.request({
method: 'GET',
url: 'https://example.com/my/api,
headers: {
'X-Fake-Header': 'Max was here'
},
params: {
'size': 'XL'
}
});
};
// Example of a POST request. Note: data
// can be passed as a raw JS Object (must be JSON serializable)
const doPost = () => {
const { Http } = Plugins;
const ret = await Http.request({
method: 'POST',
url: 'https://example.com/my/api,
headers: {
'X-Fake-Header': 'Max was here'
},
data: {
foo: 'bar',
cool: true
}
});
}
const setCookie = async () => {
const { Http } = Plugins;
const ret = await Http.setCookie({
url: this.apiUrl('/cookie'),
key: 'language',
value: 'en'
});
}
const deleteCookie = async () => {
const { Http } = Plugins;
const ret = await Http.deleteCookie({
url: this.apiUrl('/cookie'),
key: 'language',
});
}
const clearCookies = async () => {
const { Http } = Plugins;
const ret = await Http.clearCookies({
url: this.apiUrl('/cookie'),
});
}
const getCookies = async () => {
const { Http } = Plugins;
const ret = await Http.getCookies({
url: this.apiUrl('/cookie')
});
console.log('Got cookies', ret);
this.output = JSON.stringify(ret.value);
};
const downloadFile = async () => {
const { Http } = Plugins;
const ret = await Http.downloadFile({
url: 'https://example.com/path/to/download.pdf'),
filePath: 'document.pdf',
fileDirectory: FilesystemDirectory.Downloads
});
if (ret.path) {
const read = await Filesystem.readFile({
path: 'download.pdf',
directory: FilesystemDirectory.Downloads
});
// Data is here
}
}
const uploadFile = async () => {
const { Http } = Plugins;
const ret = await Http.uploadFile({
url: 'https://example.com/path/to/upload.pdf',
name: 'myFile',
filePath: 'document.pdf',
fileDirectory: FilesystemDirectory.Downloads
});
}
Coming soon
Thanks goes to these wonderful people (emoji key):
Daniel Sogl 📖 | Priyank Patel 💻 |
This project follows the all-contributors specification. Contributions of any kind welcome!
FAQs
A native HTTP plugin for CORS-free requests and file transfers
The npm package @ovos-media/capacitor-community-http receives a total of 4 weekly downloads. As such, @ovos-media/capacitor-community-http popularity was classified as not popular.
We found that @ovos-media/capacitor-community-http demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.