I am using Google Cloud SDK for publishing and trying to host my first basic site. Whenever I try to deploy app, it shows error 403: appengine.applications.get permission is required. I've tried each and every thing: searched a lot but still not able to find any solution. Also after changing project name and then browsing the site, it still shows error 404 ,requested url not found on the server.
link- udacitywork1.appspot.com
INDEX.HTML
<html>
<head>
<title>Hello, udacity!</title>
<link rel="stylesheet" type="text/css" href="/css/style.css">
</head>
<body>
<h1>Hello,Udacity!</h1>
</body>
</html>
APP.YAML CODE
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /
static_files: www/index.html
upload: www/index.html
- url: /(.*)
static_files: www/\1
upload: www/(.*)
Please help! Thanks in advance!


udacitywork1) - which is why you couldn't deploy. - Dan Cornilescu<your_app_name>.appspot.com, the leadingwww.is something else - you have nothing in the code justifying it. - Dan Cornilescu