Rapid account: null

/ bitfuego

No Published APIs
This user has not published any APIs yet

Discussions

4
Title
Created at (Click to sort ascending)
A
5
This is actually really easy to diagnose. Interfacelift, you're blocking all request to preview URL's that are not sent through a web browser. If you try the following code you will receive a 403 error code: ``` curl --get 'http://interfacelift.com/wallpaper/previews/03169_taftpointyosemitecalifornia.jpg' -L ``` However, if you fake the user agent you can download the file. ``` curl --get 'http://interfacelift.com/wallpaper/previews/03169_taftpointyosemitecalifornia.jpg' -L -H "user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:32.0) Gecko/20100101 Firefox/32.0" ``` You receive the payload of the JPEG. I understand the need to block non-browser user agents from downloading wallpapers from the interfacelift website. However, blocking preview images seems overkill. I'll have to check, but I believe faking the user agent is going to cause our app to be denied approval on the app store. This is a big roadblock for us. My question, can you please bypass the useragent verification for preview images? Do. 3:52 25/9/14
A
5
This is actually really easy to diagnose. Interfacelift, you're blocking all request to preview URL's that are not sent through a web browser. If you try the following code you will receive a 403 error code: ``` curl --get 'http://interfacelift.com/wallpaper/previews/03169_taftpointyosemitecalifornia.jpg' -L ``` However, if you fake the user agent you can download the file. ``` curl --get 'http://interfacelift.com/wallpaper/previews/03169_taftpointyosemitecalifornia.jpg' -L -H "user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:32.0) Gecko/20100101 Firefox/32.0" ``` You receive the payload of the JPEG. I understand the need to block non-browser user agents from downloading wallpapers from the interfacelift website. However, blocking preview images seems overkill. I'll have to check, but I believe faking the user agent is going to cause our app to be denied approval on the app store. This is a big roadblock for us. My question, can you please bypass the useragent verification for preview images? Do. 3:52 25/9/14
A
5
This is actually really easy to diagnose. Interfacelift, you're blocking all request to preview URL's that are not sent through a web browser. If you try the following code you will receive a 403 error code: ``` curl --get 'http://interfacelift.com/wallpaper/previews/03169_taftpointyosemitecalifornia.jpg' -L ``` However, if you fake the user agent you can download the file. ``` curl --get 'http://interfacelift.com/wallpaper/previews/03169_taftpointyosemitecalifornia.jpg' -L -H "user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:32.0) Gecko/20100101 Firefox/32.0" ``` You receive the payload of the JPEG. I understand the need to block non-browser user agents from downloading wallpapers from the interfacelift website. However, blocking preview images seems overkill. I'll have to check, but I believe faking the user agent is going to cause our app to be denied approval on the app store. This is a big roadblock for us. My question, can you please bypass the useragent verification for preview images? Do. 3:52 25/9/14
A
5
This is actually really easy to diagnose. Interfacelift, you're blocking all request to preview URL's that are not sent through a web browser. If you try the following code you will receive a 403 error code: ``` curl --get 'http://interfacelift.com/wallpaper/previews/03169_taftpointyosemitecalifornia.jpg' -L ``` However, if you fake the user agent you can download the file. ``` curl --get 'http://interfacelift.com/wallpaper/previews/03169_taftpointyosemitecalifornia.jpg' -L -H "user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:32.0) Gecko/20100101 Firefox/32.0" ``` You receive the payload of the JPEG. I understand the need to block non-browser user agents from downloading wallpapers from the interfacelift website. However, blocking preview images seems overkill. I'll have to check, but I believe faking the user agent is going to cause our app to be denied approval on the app store. This is a big roadblock for us. My question, can you please bypass the useragent verification for preview images? Do. 3:52 25/9/14