MobClix error for iPhone -503? - iphone

I have integrated MobClix to my app, the test adds are working correctly before entering my MobClix application ID, after giving actual MobClix ID i am getting below error.
( I have checked my MobClix applicationID, and also i have enabled only 320*50 add i used the same in code they are correct) Dont know why i am getting this error.
Error Domain=com.mobclix.ads Code=-503 "The operation couldn’t be completed. (com.mobclix.ads error -503.)"

Try following the steps here. If that still doesn't work, submit a support ticket and we can take a look into your account.

Related

error in flutter and my phone is not responding never

I using google map on my app, and upload the code to my phone,
the problem is sometimes when I enter and exit to the map quickly,
the phone is not responding never !!! also I can't turn the phone off!!!
the only solution is re-upload the code again, only this is the solution to make my phone work!!
I try to see the output from the android studio, and I see like that
[ERROR:flutter/lib/ui/ui_dart_state.cc(157)] Unhandled Exception: PlatformException(error, Neither user 10737 nor current process has android.permission.WAKE_LOCK., null)
I wish you understand and help me!
The error clearly says that the app doesn't have the permission to unlock the phone by itself.
You should add the permission in your code and request it from the user.
If you search it on the net, you will find that Google maps in flutter sometimes needs the permission WAKE_LOCK.
You should add it to your manifest.

System.ArgumentOutOfRangeException error in Windows 8 Visual Studio?

I just downloaded a sample app for Windows 8 that should allow users to look through albums and upload pictures to facebook. When starting the app, I succeed in logging into my facebook, but right after logging in and displaying my profile picture, I get the following error:
"An exception of type 'System.ArgumentOutOfRangeException' occurred in mscorlib.dll but was not handled in user code
Additional information: Index was out of range. Must be non-negative and less than the size of the collection.
If there is a handler for this exception, the program may be safely continued."
The problem seems to occur at this line:
await GetUserProfilePicture();
The app is here: http://code.msdn.microsoft.com/Facebook-Photo-Albums-c9589b5a?SRC=VSIDE Would anybody be kind enough to download it and see what the problem is? You also need an App ID for it to function.
The error is on line 81, file FacebookInfoView.xaml.cs. When albuminfo list has no values i.e. count = 0 and if you call albuminfo[0], it's surely gonna throw System.ArgumentOutOfRangeException.

Payment Transaction State Failed

I am trying to make In-app purchase in my application using phonegap plugin which is https://github.com/phonegap/phonegap-plugins/tree/master/iPhone/InAppPurchaseManager
but in sandbox testing i'm getting following error
plugins.inAppPurchaseManager.updatedTransactionCallback.apply(plugins.inAppPurchaseManager, ["PaymentTransactionStateFailed",0,"Cannot connect to iTunes Store","","",""])
and then the application gets struck...can anyone help me out with this??
Take a look inside of InAppPurchaseManager.js, and you'll see the first call of InAppPurchaseManager.prototype.updatedTransactionCallback is:
alert(state);
Replace that with PhoneGap's preferred:
navigator.notification.alert(state);
And it should clear up fine.

Error while uploading image to flickr in iphone(Xcode 4.2)

In my app, I want to share an image to flickr.
I used the libraries provided by flickr. After authorization I call the following method
[self.flickrRequest uploadImageStream:[NSInputStream inputStreamWithData:JPEGData] suggestedFilename:#"Pic 2 Print" MIMEType:#"image/jpeg" arguments:[NSDictionary dictionaryWithObjectsAndKeys:#"0", #"is_public", nil]];
but I get this error
kUploadImageStep Error Domain=org.lukhnos.ObjectiveFlickr
Code=2147418115 "The operation couldn’t be completed.
(org.lukhnos.ObjectiveFlickr error 2147418115.)
If anyone knows then plz help me.
Thanks in advance.
For me the solution was with the default user agent the lib is using. It seems like Flickr is blocking connections from iOS. When I put a different user agent, HTTPRequest.userAgent = #"hehe"; I got it working.

Error when navigating to user auth page

The facebook C# SDK generates an url that looks like this:
http://m.facebook.com/logout.php?next=http://www.facebook.com/dialog/oauth/?response_type=token&display=popup&scope=user_about_me&client_id={MY APP ID}&redirect_uri=http://www.facebook.com/connect/login_success.html&confirm=1
(obviously I've set the APP id in the real code).
Problem is that the lougout page presents a very generic error message "An error occurred. Please try again later.". If I cut the oauth part out and navigate to that, oauth works fine. But it seems like the NEXT parameter isn't really panning out.
Any pointers? This is with the latest 5.0.9 (BETA) build of the SDK.
I was having the same issue. What I did was remove the braces (the '{' and '}') from the App Id to get it to work. Hope that helps