url-encoding

    0熱度

    1回答

    我有以下的C#代碼將圖像轉換成使用UrlTokenEncode base64編碼字符串: byte[] imageArray = System.IO.File.ReadAllBytes(note_path); string base64ImageRepresentation = HttpServerUtility.UrlTokenEncode(imageArray);

    0熱度

    2回答

    我有以下 username [email protected] 如何 「+」 被編碼爲%2B 編碼的URL:http://test.in/api/voi/login?password=anshu&username=amit24%[email protected] 其次,如果用戶名是這個amit24 * [email protected]那麼我們如何編碼這個網址? 我曾試圖這樣的: String

    1熱度

    2回答

    我在其中一個查詢參數中有一個哈希鍵,它可以與其他特殊字符一起使用+ char。問題是當這個URL被解碼時URLDecoder將+ char轉換成空格。 有沒有一種方法可以強制URLDecoder不會將'+'轉換爲空格。

    0熱度

    2回答

    我正在嘗試構建一個url並確保路徑中的所有特殊字符都已編碼,我目前未能這樣做,可能是由於誤解了path屬性NSURLComponents作品。 NSURLComponents *components = [NSURLComponents componentsWithURL:url resolvingAgainstBaseURL:NO]; NSURLQueryItem *queryItem =

    0熱度

    2回答

    我有一個銷售渠道,我問過谷歌API的地址,它會返回類似這樣的查詢字符串: 123+Yonge+Street%2C+Toronto%2C+ON%2C+Canada 我發現一個函數我已經用搶的查詢字符串這樣的: function getParameterByName(name, url) { if (!url) { url = window.location.href; } nam

    -3熱度

    1回答

    我在Python 2.7上使用urllib3。我需要發送一個請求到一個網站,只有當這些空格用'+'分隔時,纔會給出所需的響應,不是'%2b'。 http = urllib3.PoolManager() var = 'foo bar' url = 'https://foo.com/release?q=' + var webdata = http.request('GET', url) 如何

    -2熱度

    3回答

    例如,如果我有一個輸入像: Heeeeeeeeeeeellooooo 輸出必須是: H9e3e2l5o 這是我到目前爲止寫的代碼: 個 public class RLE { public static String encode(String s) { if (s == "" || s == null) return ""; StringBuilder sb

    0熱度

    1回答

    我正在形成一個包含另一個url作爲其查詢字符串參數之一的url。這個url應該從我們在tomcat上部署的webapp返回一些xml代碼。 下面是我生成使用Java樣本網址: http://localhost:8080/sample/url?id=1&uid=sfdgsdh&nurl=https%3A%2F%2Flocalhost%3A8080%2Fxmltag%2Freturn%3Fzid%3D

    1熱度

    1回答

    我們是否需要忽略我們從用戶應用程序接受的用於重定向到的URL(例如,如果登錄成功,就像在此問題中那樣)?他們是否有任何安全漏洞? 較長的問題(代碼審查): - 雖然在我的web應用程序(與passportjs)實施Facebook登錄,我碰到一個下面的實現來了一個小的中間件功能,設置在會話返回URL。 function checkReturnTo(req, res, next) { va

    0熱度

    1回答

    在我的其中一個資源中,我通過會話響應將JSON對象傳遞給JSP頁面。 @POST @Path("/updateUser") @Produces(MediaType.APPLICATION_JSON) @Consumes(MediaType.APPLICATION_JSON) public Response userProfile( @Context UriInfo uriInfo