i aftorizizing in site
this site work with cookie/how can i recivi it before aftorizing?
B4X:
Response.New1
Request.New1(url)
request.ContentType="application/x-www-form-urlencoded"
Request.Method = "Post"
FileOpen(c1,AppPath&"\sendcode2.txt",crandom)
strread.New1(c1,true)
request.ContentLength=strread.Length
Writer.New1(Request.GetStream,true)
Dim Buffer(4096) As byte
Reader.New1(c1,true)
count = Reader.ReadBytes(buffer(),4096)
Do While count > 0
Writer.WriteBytes2(buffer(),0,count)
count = Reader.ReadBytes(buffer(),4096)
Loop
FileClose(c1)