我正在使用 json 请求登录并显示与用户有关的消息。但是如果我从浏览器发出相同的请求,它仍然可以工作。我正在为我的 App 使用 PHP-MYSQL。我没有任何网站,所以我需要应用程序本身的答案。
我正在使用带有 android 应用程序的 facebook sdk,所以我没有任何密码。我想在调用时保护用户和用户数据配置文件之间的聊天消息。就是这样。
我的问题是:
如何确保仅在应用程序内拨打电话?
当一些人试图在浏览器中复制和粘贴代码时,我如何确保通话安全?
3.10秒后创建的消息有超时时间。所以不能重复使用相同的url和msg。
我有像 http://example.com/login=emailId 这样的 http 调用;
获取消息:http://example.com/getMsgs/user=uiniqueNo;
我在应用程序中使用时提供了上述链接,它工作正常但不安全。请建议我一些文件和流程。我已经检查了这个链接保护 HTTP 请求不被其他人调用, 但不清楚。请建议我任何具有上述要求的教程。在此先感谢。我非常感谢您的帮助。
public class CustomizedListView extends Activity {
// All static variables
static final String URL = "http://example.com/getmsgs/userno=123";
// XML node keys
static final String KEY_SONG = "song"; // parent node
static final String KEY_ID = "id";
static final String KEY_TITLE = "title";
static final String KEY_ARTIST = "artist";
static final String KEY_DURATION = "duration";
static final String KEY_THUMB_URL = "thumb_url";
ListView list;
LazyAdapter adapter;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ArrayList<HashMap<String, String>> songsList = new ArrayList<HashMap<String, String>>();
JSONObject json = JSONfunctions.getJSONfromURL(URL);
try {
JSONObject arr2 = json.getJSONObject("feed");
JSONArray arr = arr2.getJSONArray("entry");
for (int i = 0; i < arr.length(); i++) {
JSONObject e1 = arr.getJSONObject(i);
JSONArray arr3 = e1.getJSONArray("im:image");
JSONObject arr8 = e1.getJSONObject("im:name");
JSONObject arr10 = e1.getJSONObject("im:artist");
JSONObject e12 = arr3.getJSONObject(0);
// creating new HashMap
HashMap<String, String> map = new HashMap<String, String>();
map.put(KEY_THUMB_URL, e12.getString("label"));
map.put(KEY_ARTIST, arr8.getString("label"));
map.put(KEY_TITLE, arr10.getString("label"));
// adding HashList to ArrayList
songsList.add(map);
}
} catch (JSONException e) {
// Log.e("log_tag", "Error parsing data "+e.toString());
Toast.makeText(getBaseContext(),
"Network communication error!", 5).show();
}
list=(ListView)findViewById(R.id.list);
// Getting adapter by passing xml data ArrayList
adapter=new LazyAdapter(this, songsList);
list.setAdapter(adapter);
// Click event for single list row
list.setOnItemClickListener(new OnItemClickListener() {
@SuppressWarnings("unchecked")
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
HashMap<String, String> o = (HashMap<String, String>) list.getItemAtPosition(position);
Toast.makeText(CustomizedListView.this, "ID '" + o.get("KEY_TITLE") + "' was clicked.", Toast.LENGTH_SHORT).show();
}
});
}
}
在上面的代码中,任何人都可以猜到 usersno,但我如何确保应用程序和 php 服务器中没有 123应该深入到用户无法破解的操作系统中,因此我可以解密服务器 php 中的代码,用户将无法随机键入任何内容为 123。
<?php
$strno=$_GET['strno'];
if (isset($strno))
{
$connect=mysql_connect("localhost","test","test") or die ('Connection error!!!');
mysql_select_db("test") or die ('Database error!!!');
$query=mysql_query("select sno FROM users where strno='$strno';");
while($row = mysql_fetch_assoc($query))
{
$jsonoutput='{"json":{
"msg_sub":"'.$row['msg_sub'].'",
}}';
}
}
echo trim($jsonoutput);
mysql_close($connect) or die ('Unable to close connection-error!!!');
}
?>