當前位置: 首頁>>代碼示例>>Golang>>正文


Golang GetPolicy.MakeRequest方法代碼示例

本文整理匯總了Golang中github.com/qiniu/api/rs.GetPolicy.MakeRequest方法的典型用法代碼示例。如果您正苦於以下問題:Golang GetPolicy.MakeRequest方法的具體用法?Golang GetPolicy.MakeRequest怎麽用?Golang GetPolicy.MakeRequest使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/qiniu/api/rs.GetPolicy的用法示例。


在下文中一共展示了GetPolicy.MakeRequest方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: downloadUrl

//download
func downloadUrl(domain, key string) string {
	baseUrl := rs.MakeBaseUrl(domain, key)
	//baseUrl = baseUrl + "?pm3u8/0/e/1438162783"
	baseUrl = baseUrl + "?avinfo"
	policy := rs.GetPolicy{}
	return policy.MakeRequest(baseUrl, nil)
}
開發者ID:needkane,項目名稱:qiniu,代碼行數:8,代碼來源:demo.go

示例2: TestPrivateImageView

func TestPrivateImageView(t *testing.T) {

	//首先上傳一個圖片 用於測試
	policy := rs.PutPolicy{
		Scope: bucket + ":" + key,
	}
	err := io.PutFile(nil, nil, policy.Token(nil), key, localFile, nil)
	if err != nil {
		t.Errorf("TestPrivateImageView failed: %v", err)
		return
	}

	rawUrl := makeUrl(key)

	iv := ImageView{
		Mode:    2,
		Height:  250,
		Quality: 80,
	}
	imageViewUrl := iv.MakeRequest(rawUrl)
	p := rs.GetPolicy{}
	imageViewUrlWithToken := p.MakeRequest(imageViewUrl, nil)
	resp, err := http.DefaultClient.Get(imageViewUrlWithToken)
	if err != nil {
		t.Errorf("TestPrivateImageView failed: %v", err)
		return
	}
	defer resp.Body.Close()

	if (resp.StatusCode / 100) != 2 {
		t.Errorf("TestPrivateImageView failed: resp.StatusCode = %v", resp.StatusCode)
		return
	}
}
開發者ID:HYQMartin,項目名稱:star,代碼行數:34,代碼來源:image_view_test.go

示例3: handleReturn

func handleReturn(w http.ResponseWriter, req *http.Request) {

	ret := req.FormValue("upload_ret")
	b, err := base64.URLEncoding.DecodeString(ret)
	if err != nil {
		w.WriteHeader(404)
		return
	}

	var uploadRet UploadRet
	err = json.Unmarshal(b, &uploadRet)
	if err != nil {
		w.WriteHeader(404)
		return
	}

	policy := rs.GetPolicy{Scope: "*/" + uploadRet.Key}
	img := policy.MakeRequest(rs.MakeBaseUrl(DOMAIN, uploadRet.Key))
	returnPage := fmt.Sprintf(returnPageFmt, string(b), img, img)
	w.Write([]byte(returnPage))
}
開發者ID:yunan,項目名稱:Go-Example,代碼行數:21,代碼來源:main.go

示例4: downloadUrl

func downloadUrl(domain, key string) string {
	baseUrl := rs.MakeBaseUrl(domain, key)
	policy := rs.GetPolicy{}
	return policy.MakeRequest(baseUrl, mac)
}
開發者ID:gavinzhs,項目名稱:testgo,代碼行數:5,代碼來源:qiniu.go

示例5: GetQiniuPrivateDownloadUrl

func GetQiniuPrivateDownloadUrl(domain, key string) string {
	baseUrl := rs.MakeBaseUrl(domain, key)
	policy := rs.GetPolicy{}
	return policy.MakeRequest(baseUrl, nil)
}
開發者ID:trigrass2,項目名稱:wego,代碼行數:5,代碼來源:qiniu.go

示例6: GetUrl

func GetUrl(key string) string {
	baseUrl := rs.MakeBaseUrl(DOWNLOAD_URL, key)
	getPolicy := rs.GetPolicy{}
	return getPolicy.MakeRequest(baseUrl, nil)
}
開發者ID:wxaxiaoyao,項目名稱:linux,代碼行數:5,代碼來源:qiniu.go


注:本文中的github.com/qiniu/api/rs.GetPolicy.MakeRequest方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。