|
@@ -22,6 +22,7 @@ import (
|
|
"encoding/hex"
|
|
"encoding/hex"
|
|
"fmt"
|
|
"fmt"
|
|
"io"
|
|
"io"
|
|
|
|
+ "math"
|
|
"net/http"
|
|
"net/http"
|
|
"net/url"
|
|
"net/url"
|
|
"strings"
|
|
"strings"
|
|
@@ -45,6 +46,8 @@ func echo(c *gin.Context) {
|
|
} else {
|
|
} else {
|
|
rawData = nil
|
|
rawData = nil
|
|
}
|
|
}
|
|
|
|
+ c.Request.ParseForm()
|
|
|
|
+ c.Request.ParseMultipartForm(math.MaxInt64)
|
|
|
|
|
|
ret.Data = map[string]interface{}{
|
|
ret.Data = map[string]interface{}{
|
|
"Context": map[string]interface{}{
|
|
"Context": map[string]interface{}{
|