[InstagramBridge] Serve img as base64 data#4908
Open
zenphonix wants to merge 7 commits intoRSS-Bridge:masterfrom
Open
[InstagramBridge] Serve img as base64 data#4908zenphonix wants to merge 7 commits intoRSS-Bridge:masterfrom
zenphonix wants to merge 7 commits intoRSS-Bridge:masterfrom
Conversation
Pull request artifacts
last change: Wednesday 2026-02-25 13:50:40 |
Author
|
It would be good to downscale the images to 540x540 to improve loading times |
Author
|
One quick way to resize images would be but this would require PHP GD library. Is it feasible to include GD in into rss-bridge? |
* Resize ig images * href $mediaURI
Author
|
Last two commits include these changes:
|
Author
|
Need to add a conditional test in order to avoid exception |
* Add condition and unset variables * Add image resolution box * Add function getResolution
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Because of instagrams restrictive CORS same-origin policy images are not rendered when referenced directly.
This PR introduces fetching the image and serving it as base64 encoded data.
Fixes #2005