用户
 找回密码
 立即注册
搜索

[求助] 申请了网易相册,把照片传上去在别的论坛贴图,却不显示?

[复制链接]

14

主题

186

帖子

62

积分

注册会员

Rank: 2

积分
62
QQ
发表于 2006-3-21 11:11:00
申请了网易相册,把照片传上去在别的论坛贴图,却不显示?
申请了网易相册,把照片传上去后,在别的论坛上贴图,别人却看不见,

我用的是插入图片,然后把链接复制上去的,

网易相册上的图片是完全公开的,不知道哪里错了。
使用道具 举报 回复
发表于 2006-3-21 11:16:00
网易防盗链!没办法!
使用道具 举报 回复 支持 反对
发表于 2006-3-21 11:16:00
网易图片不能外连接

PS。听说在图片地址前面加上 http://home.goofar.com/ile8/showpic.asp?url= 就可以了
使用道具 举报 回复 支持 反对
发表于 2006-3-21 11:17:00
他用的防盗链,用这个方法:http://www.payf.net/showpic.asp?url=你的图片地址
使用道具 举报 回复 支持 反对
发表于 2006-3-21 11:19:00
  1. <%
  2. '盗链判断
  3. If Instr(Request.ServerVariables("http_referer"),"http://"&Request.ServerVariables("server_name")&"") = 0 Then
  4. Response.Write "非法链接"
  5. Response.End
  6. End If
  7. Dim url, body, myCache
  8. url = Request.QueryString("url")
  9.   Set myCache = new cache
  10.   myCache.name = "picindex"&url
  11.   If myCache.valid Then
  12.           body = myCache.value
  13.   Else
  14.           body = GetWebData(url)
  15.           myCache.add body,dateadd("d",1,now)
  16.   End If
  17.   If Err.Number = 0 Then
  18.         Response.CharSet = "UTF-8"
  19.         Response.ContentType = "application/octet-stream"
  20.         Response.BinaryWrite body
  21.         Response.Flush
  22.   Else
  23.         Wscript.Echo Err.Description
  24.   End if
  25. '取得数据
  26. Public Function GetWebData(ByVal strUrl)
  27. Dim curlpath
  28. curlpath = Mid(strUrl,1,Instr(8,strUrl,"/"))
  29. Dim Retrieval
  30. Set Retrieval = Server.CreateObject("Microsoft.XMLHTTP")
  31. With Retrieval
  32. .Open "Get", strUrl, False,"",""
  33. .setRequestHeader "Referer", curlpath
  34. .Send
  35. GetWebData =.ResponseBody
  36. End With
  37. Set Retrieval = Nothing
  38. End Function
  39. 'cache类
  40. class Cache
  41.         private obj                                'cache内容
  42.         private expireTime                '过期时间
  43.         private expireTimeName        '过期时间application名
  44.         private cacheName                'cache内容application名
  45.         private path                        'url
  46.         
  47.         private sub class_initialize()
  48.                 path=request.servervariables("url")
  49.                 path=left(path,instrRev(path,"/"))
  50.         end sub
  51.         
  52.         private sub class_terminate()
  53.         end sub
  54.         
  55.         public property get blEmpty
  56.                 '是否为空
  57.                 if isempty(obj) then
  58.                         blEmpty=true
  59.                 else
  60.                         blEmpty=false
  61.                 end if
  62.         end property
  63.         
  64.         public property get valid
  65.                 '是否可用(过期)
  66.                 if isempty(obj) or not isDate(expireTime) then
  67.                         valid=false
  68.                 elseif CDate(expireTime)<now then
  69.                                 valid=false
  70.                 else
  71.                         valid=true
  72.                 end if
  73.         end property
  74.         
  75.         public property let name(str)
  76.                 '设置cache名
  77.                 cacheName=str & path
  78.                 obj=application(cacheName)
  79.                 expireTimeName=str & "expires" & path
  80.                 expireTime=application(expireTimeName)
  81.         end property
  82.         
  83.         public property let expires(tm)
  84.                 '重设置过期时间
  85.                 expireTime=tm
  86.                 application.lock
  87.                 application(expireTimeName)=expireTime
  88.                 application.unlock
  89.         end property
  90.         
  91.         public sub add(var,expire)
  92.                 '赋值
  93.                 if isempty(var) or not isDate(expire) then
  94.                         exit sub
  95.                 end if
  96.                 obj=var
  97.                 expireTime=expire
  98.                 application.lock
  99.                 application(cacheName)=obj
  100.                 application(expireTimeName)=expireTime
  101.                 application.unlock
  102.         end sub
  103.         
  104.         public property get value
  105.                 '取值
  106.                 if isempty(obj) or not isDate(expireTime) then
  107.                         value=null
  108.                 elseif CDate(expireTime)<now then
  109.                         value=null
  110.                 else
  111.                         value=obj
  112.                 end if
  113.         end property
  114.         
  115.         public sub makeEmpty()
  116.                 '释放application
  117.                 application.lock
  118.                 application(cacheName)=empty
  119.                 application(expireTimeName)=empty
  120.                 application.unlock
  121.                 obj=empty
  122.                 expireTime=empty
  123.         end sub
  124.         
  125.         public function equal(var2)
  126.                 '比较
  127.                 if typename(obj)<>typename(var2) then
  128.                         equal=false
  129.                 elseif typename(obj)="Object" then
  130.                         if obj is var2 then
  131.                                 equal=true
  132.                         else
  133.                                 equal=false
  134.                         end if
  135.                 elseif typename(obj)="Variant()" then
  136.                         if join(obj,"^")=join(var2,"^") then
  137.                                 equal=true
  138.                         else
  139.                                 equal=false
  140.                         end if
  141.                 else
  142.                         if obj=var2 then
  143.                                 equal=true
  144.                         else
  145.                                 equal=false
  146.                         end if
  147.                 end if
  148.         end function
  149. end class
  150. %>
复制代码
使用道具 举报 回复 支持 反对
发表于 2006-3-21 11:23:00
谢谢你们。
使用道具 举报 回复 支持 反对
发表于 2006-3-21 11:33:00
学了一招,谢谢了!
使用道具 举报 回复 支持 反对
发表于 2006-3-21 11:40:00
学习3,4楼的办法

谢谢
使用道具 举报 回复 支持 反对
发表于 2006-3-21 11:47:00
5#的是ASP的
使用道具 举报 回复 支持 反对
发表于 2006-3-21 12:07:00
试一下:
使用道具 举报 回复 支持 反对
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则